snakePlus/build/tilemap.h
2020-01-21 01:38:34 +01:00

33 lines
825 B
C

//{{BLOCK(tilemap)
//======================================================================
//
// tilemap, 256x256@8,
// + palette 256 entries, not compressed
// + 12 tiles (t|f reduced) not compressed
// + regular map (in SBBs), not compressed, 32x32
// Total size: 512 + 768 + 2048 = 3328
//
// Time-stamp: 2018-12-28, 03:06:39
// Exported by Cearn's GBA Image Transmogrifier, v0.8.15
// ( http://www.coranac.com/projects/#grit )
//
//======================================================================
#ifndef GRIT_TILEMAP_H
#define GRIT_TILEMAP_H
#define tilemapTilesLen 768
extern const unsigned int tilemapTiles[192];
#define tilemapMapLen 2048
extern const unsigned short tilemapMap[1024];
#define tilemapPalLen 512
extern const unsigned short tilemapPal[256];
#endif // GRIT_TILEMAP_H
//}}BLOCK(tilemap)