Last change
on this file since 732 was
724,
checked in by Sam Hocevar, 10 years ago
|
build: merge all static libraries into a single one.
|
File size:
708 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, by |
---|
8 | * Jonathan Clark, or by Sam Hocevar. |
---|
9 | */ |
---|
10 | |
---|
11 | #ifndef _SETUP_H_ |
---|
12 | #define _SETUP_H_ |
---|
13 | |
---|
14 | struct flags_struct |
---|
15 | { |
---|
16 | short fullscreen; |
---|
17 | short mono; |
---|
18 | short nosound; |
---|
19 | short grabmouse; |
---|
20 | short nosdlparachute; |
---|
21 | short xres; |
---|
22 | short yres; |
---|
23 | short overlay; |
---|
24 | }; |
---|
25 | |
---|
26 | struct keys_struct |
---|
27 | { |
---|
28 | int left; |
---|
29 | int right; |
---|
30 | int up; |
---|
31 | int down; |
---|
32 | int b1; |
---|
33 | int b2; |
---|
34 | int b3; |
---|
35 | int b4; |
---|
36 | }; |
---|
37 | |
---|
38 | #endif // _SETUP_H_ |
---|
Note: See
TracBrowser
for help on using the repository browser.