Danbias/Code/Game/GameLogic/Level.h

24 lines
335 B
C
Raw Normal View History

2013-11-28 08:33:29 +01:00
//////////////////////////////////////////////////
//Created by Erik and Linda of the GameLogic team
//////////////////////////////////////////////////
2013-11-19 11:07:14 +01:00
#ifndef LEVEL_H
#define LEVEL_H
namespace GameLogic
{
class Level
{
public:
Level(void);
~Level(void);
private:
2013-12-05 11:50:39 +01:00
struct PrivateData;
PrivateData *myData;
2013-11-19 11:07:14 +01:00
};
}
#endif