mirror of
https://github.com/weiju/amiga-stuff
synced 2025-12-08 14:58:33 +00:00
13 lines
168 B
C
13 lines
168 B
C
struct RawMap
|
|
{
|
|
WORD mapwidth;
|
|
WORD mapheight;
|
|
WORD maplayers;
|
|
WORD blockwidth;
|
|
WORD blockheight;
|
|
BYTE bytesperblock;
|
|
BYTE transparentblock;
|
|
UBYTE data[1];
|
|
};
|
|
|