blob: cf7787e711e5c0ff2dcfeb150c787254dd5b59d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef TYPEDEF_H
#define TYPEDEF_H
// useful definitions
#define TILES_CAP 128
#define TILEMAP_CAP 16384
#include <stdint.h>
#include <stddef.h>
typedef unsigned char small_t;
typedef uint64_t big_t;
#endif
|