summaryrefslogtreecommitdiffstats
path: root/engine/include/types.h
blob: 003c114a67b80550505fe04aa95033d02cc1b608 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef __TYPES_H__
#define __TYPES_H__

/* Flatland types */

class FlatObject;

class FlatActor;
class FlatSprite;

class Focusable;

class KeyFocusable;
class MouseFocusable;

class FlatEvent;
class EventListener;
class Eventrigger;

class FlatWindow;

class FlatSpriter;
class FlatMultiSpriter;

class task_s;

/* SDL types */

typedef unsigned char Uint8;
typedef unsigned int Uint32;

struct SDL_Surface;
struct SDL_Rect;

union SDL_Event;

#endif