blob: 2a1fbecec39d612764b3ed9f09e7b002d60021ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//======================================================================
//
// block, 16x16@4,
// + palette 256 entries, not compressed
// + 4 tiles not compressed
// Total size: 512 + 128 = 640
//
// Time-stamp: 2020-08-11, 14:57:03
// Exported by Cearn's Usenti v1.7.6
// (comments, kudos, flames to "daytshen@hotmail.com")
//
//======================================================================
#ifndef __BLOCK__
#define __BLOCK__
#define blockPalLen 512
extern const unsigned short blockPal[256];
#define blockTilesLen 128
extern const unsigned short blockTiles[64];
#endif // __BLOCK__
|