summaryrefslogtreecommitdiffstats
path: root/engine/include/types.hpp
blob: 31596c924337313566aa4521c77a049ec9ddbf52 (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
38
39
#ifndef __TYPES_H__
#define __TYPES_H__

/* Flatland types */

namespace flat
{
    class object;

    class FlatActor;
    class FlatSprite;

    class Focusable;

    class KeyFocusable;
    class MouseFocusable;

    class FlatEvent;
    class EventListener;
    class Eventrigger;

    class FlatWindow;

    class FlatSpriter;
    class FlatMultiSpriter;
}


/* SDL types */

typedef unsigned char uint8_t;
typedef unsigned int uint32_t;

struct SDL_Surface;
struct SDL_Rect;

union SDL_Event;

#endif