SBSPSS/source/level/level.h

28 lines
456 B
C
Raw Normal View History

2000-12-06 23:52:00 +01:00
/*******************/
/*** 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