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

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
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
14struct 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
29struct 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.