This commit is contained in:
parent
2fad046dec
commit
14c4c0e762
2 changed files with 63 additions and 0 deletions
28
source/level/level.h
Normal file
28
source/level/level.h
Normal file
|
@ -0,0 +1,28 @@
|
|||
/*******************/
|
||||
/*** Level Class ***/
|
||||
/*******************/
|
||||
|
||||
#ifndef __LEVEL_LEVEL_H__
|
||||
#define __LEVEL_LEVEL_H__
|
||||
|
||||
|
||||
/*****************************************************************************/
|
||||
class CLevel
|
||||
{
|
||||
public:
|
||||
CLevel(){}
|
||||
virtual ~CLevel(){}
|
||||
|
||||
|
||||
void init();
|
||||
void shutdown();
|
||||
void render();
|
||||
void think(int _frames);
|
||||
|
||||
private:
|
||||
sLvlHdr *LvlData;
|
||||
};
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue