aboutsummaryrefslogtreecommitdiff
path: root/dat.h
blob: c852a09897f5051a4af59299184dee8d541d8bc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
enum {
	SCRW = 240,
	SCRH = 160
};

typedef unsigned char uchar;
typedef unsigned short ushort;
typedef unsigned int uint;
typedef unsigned long ulong;
typedef unsigned long long uvlong;

typedef struct Point Point;

struct Point
{
	int x, y;
};