This commit is contained in:
Daveo 2001-07-11 19:02:00 +00:00
parent 47d017945d
commit 34e9720e26
7 changed files with 159 additions and 17 deletions

View file

@ -28,6 +28,14 @@ struct sLvlTab
extern int s_globalLevelSelectThing;
extern sLvlTab LvlTable[];
/*****************************************************************************/
struct sTileStore
{
u16 X,Y;
sTileMapElem Tile;
u8 Col;
};
/*****************************************************************************/
class CLayer;
class CLevel
@ -83,6 +91,7 @@ private:
void DisplayLoadingScreen(sLvlTab *lvlTab);
static sLevelHdr *LevelHdr;
static DVECTOR MapPos;
@ -112,7 +121,11 @@ static DVECTOR s_playerSpawnPos;
static u8 m_isBossRespawn;
static s32 m_bossHealth;
// Level Repair stuff
void CreateTileStore();
void ApplyTileStore();
int m_TileStoreCount;
sTileStore *m_TileStore;
};
/*****************************************************************************/