1
0
mirror of https://github.com/weiju/amiga-stuff synced 2025-12-08 14:58:33 +00:00

added audio and scrolling_tricks

This commit is contained in:
Wei-ju Wu
2016-06-13 08:49:14 -07:00
parent 612e9ffdd8
commit 713cf74d27
28 changed files with 1199 additions and 10 deletions

12
scrolling_tricks/map.h Normal file
View File

@ -0,0 +1,12 @@
struct RawMap
{
WORD mapwidth;
WORD mapheight;
WORD maplayers;
WORD blockwidth;
WORD blockheight;
BYTE bytesperblock;
BYTE transparentblock;
UBYTE data[1];
};