Danbias/Code/Game/GameLogic/Level.h

24 lines
335 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);
private:
struct PrivateData;
PrivateData *myData;
};
}
#endif