Last change
on this file was
555,
checked in by Sam Hocevar, 12 years ago
|
ps3: make everything compile on the PS3. Of course, nothing links yet
because so much support is missing.
|
File size:
762 bytes
|
Rev | Line | |
---|
[56] | 1 | /* |
---|
| 2 | * Abuse - dark 2D side-scrolling platform game |
---|
| 3 | * Copyright (c) 1995 Crack dot Com |
---|
[494] | 4 | * Copyright (c) 2005-2011 Sam Hocevar <sam@hocevar.net> |
---|
[56] | 5 | * |
---|
| 6 | * This software was released into the Public Domain. As with most public |
---|
[555] | 7 | * domain software, no warranty is made or implied by Crack dot Com, by |
---|
| 8 | * Jonathan Clark, or by Sam Hocevar. |
---|
[56] | 9 | */ |
---|
| 10 | |
---|
[2] | 11 | #ifndef _SETUP_H_ |
---|
| 12 | #define _SETUP_H_ |
---|
| 13 | |
---|
| 14 | struct flags_struct |
---|
| 15 | { |
---|
[494] | 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; |
---|
[2] | 27 | }; |
---|
| 28 | |
---|
| 29 | struct keys_struct |
---|
| 30 | { |
---|
[494] | 31 | int left; |
---|
| 32 | int right; |
---|
| 33 | int up; |
---|
| 34 | int down; |
---|
| 35 | int b1; |
---|
| 36 | int b2; |
---|
| 37 | int b3; |
---|
| 38 | int b4; |
---|
[2] | 39 | }; |
---|
| 40 | |
---|
| 41 | #endif // _SETUP_H_ |
---|
Note: See
TracBrowser
for help on using the repository browser.