source: abuse/trunk/src/sdlport/setup.h @ 28

Last change on this file since 28 was 2, checked in by Sam Hocevar, 18 years ago
  • imported original 0.7.0 tarball
File size: 363 bytes
Line 
1#ifndef _SETUP_H_
2#define _SETUP_H_
3
4struct flags_struct
5{
6        short fullscreen;
7        short doublebuf;
8        short mono;
9        short nosound;
10        short grabmouse;
11        short nosdlparachute;
12        short xres;
13        short yres;
14        short overlay;
15        short gl;
16        int antialias;
17};
18
19struct keys_struct
20{
21        int left;
22        int right;
23        int up;
24        int down;
25        int b1;
26        int b2;
27        int b3;
28        int b4;
29};
30
31#endif // _SETUP_H_
Note: See TracBrowser for help on using the repository browser.