aboutsummaryrefslogtreecommitdiff
path: root/src/typedef.h
blob: 483c2502cf74a5a717d5ad1a6e2b24e475512365 (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 63
#define TILEMAP_CAP 4096

#include <stdint.h>
#include <stddef.h>
typedef unsigned char small_t;
typedef uint64_t big_t;

#endif