mirror of
https://github.com/lscharen/iigs-game-engine.git
synced 2024-11-24 09:31:22 +00:00
16 lines
498 B
C
16 lines
498 B
C
/* ********************************************************************
|
|
|
|
Demo Data contains data structures for demonstrating calling GTE from
|
|
ORCA/C. This contains palette and tile information.
|
|
********************************************************************* */
|
|
|
|
#ifndef _GUARD_PROJECTGTETest1_FILEdemo_data_
|
|
#define _GUARD_PROJECTGTETest1_FILEdemo_data_
|
|
|
|
#include <types.h>
|
|
|
|
|
|
extern Byte tiles[128 * 3];
|
|
extern Word palette[16];
|
|
|
|
#endif /* define _GUARD_PROJECTGTETest1_FILEdemo_data_ */ |