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