Last change
on this file since 56 was
56,
checked in by Sam Hocevar, 15 years ago
|
- Add licensing terms to most C / C++ files (Ref #5).
|
File size:
627 bytes
|
Line | |
---|
1 | /* |
---|
2 | * Abuse - dark 2D side-scrolling platform game |
---|
3 | * Copyright (c) 1995 Crack dot Com |
---|
4 | * |
---|
5 | * This software was released into the Public Domain. As with most public |
---|
6 | * domain software, no warranty is made or implied by Crack dot Com or |
---|
7 | * Jonathan Clark. |
---|
8 | */ |
---|
9 | |
---|
10 | #ifndef _SETUP_H_ |
---|
11 | #define _SETUP_H_ |
---|
12 | |
---|
13 | struct flags_struct |
---|
14 | { |
---|
15 | short fullscreen; |
---|
16 | short doublebuf; |
---|
17 | short mono; |
---|
18 | short nosound; |
---|
19 | short grabmouse; |
---|
20 | short nosdlparachute; |
---|
21 | short xres; |
---|
22 | short yres; |
---|
23 | short overlay; |
---|
24 | short gl; |
---|
25 | int antialias; |
---|
26 | }; |
---|
27 | |
---|
28 | struct keys_struct |
---|
29 | { |
---|
30 | int left; |
---|
31 | int right; |
---|
32 | int up; |
---|
33 | int down; |
---|
34 | int b1; |
---|
35 | int b2; |
---|
36 | int b3; |
---|
37 | int b4; |
---|
38 | }; |
---|
39 | |
---|
40 | #endif // _SETUP_H_ |
---|
Note: See
TracBrowser
for help on using the repository browser.