#ifndef TYPEDEF_H#define TYPEDEF_H// useful definitions// max tiles that can be loaded#define TILES_CAP 128// max amount of tiles in a tilemap that is being generated#define TILEMAP_CAP 16384#include<stdint.h>#include<stddef.h>typedefunsignedcharsmall_t;typedefuint64_tbig_t;#endif