source: abuse/branches/lol/src/sdlport/setup.h @ 732

Last change on this file since 732 was 724, checked in by Sam Hocevar, 9 years ago

build: merge all static libraries into a single one.

File size: 708 bytes
RevLine 
[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
14struct flags_struct
15{
[494]16    short fullscreen;
17    short mono;
18    short nosound;
19    short grabmouse;
20    short nosdlparachute;
[702]21    short xres;
22    short yres;
[494]23    short overlay;
[2]24};
25
26struct keys_struct
27{
[494]28    int left;
29    int right;
30    int up;
31    int down;
32    int b1;
33    int b2;
34    int b3;
35    int b4;
[2]36};
37
38#endif // _SETUP_H_
Note: See TracBrowser for help on using the repository browser.