Danbias/Code/Game/GameLogic/Level.h

26 lines
356 B
C++

//////////////////////////////////////////////////
//Created by Erik and Linda of the GameLogic team
//////////////////////////////////////////////////
#ifndef LEVEL_H
#define LEVEL_H
namespace GameLogic
{
class Level
{
public:
Level(void);
~Level(void);
void CreateBox();
private:
struct PrivateData;
PrivateData *myData;
};
}
#endif