This commit is contained in:
parent
2fad046dec
commit
14c4c0e762
2 changed files with 63 additions and 0 deletions
35
source/level/level.cpp
Normal file
35
source/level/level.cpp
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*************/
|
||||
/*** Level ***/
|
||||
/*************/
|
||||
|
||||
#include "system\global.h"
|
||||
#include "fileio\fileio.h"
|
||||
#include <DStructs.h>
|
||||
|
||||
#include "level\level.h"
|
||||
|
||||
/*****************************************************************************/
|
||||
void CLevel::init()
|
||||
{
|
||||
CFileIO::loadFile(CHAPTER01_LEVEL01_LVL,"Level Data");
|
||||
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
void CLevel::shutdown()
|
||||
{
|
||||
MemFree(this->LvlData);
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
void CLevel::render()
|
||||
{
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
void CLevel::think(int _frames)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
/*****************************************************************************/
|
Loading…
Add table
Add a link
Reference in a new issue