TK2048/src/tiles.h
2025-07-17 23:37:08 +02:00

12 lines
201 B
C

#ifndef _TILES_HEADER_
#define _TILES_HEADER_
#include <stdint.h>
#define TILES_COUNT 11
#define TILE_WIDTH_BYTES 4
#define TILE_HEIGHT 28
extern const uint8_t tiles[];
#endif /* _TILES_HEADER_ */