2013-11-19 09:52:36 +01:00
|
|
|
#ifndef GAME_H
|
|
|
|
#define GAME_H
|
|
|
|
|
2013-11-19 11:07:14 +01:00
|
|
|
#include "Level.h"
|
|
|
|
#include "Player.h"
|
2013-11-19 09:52:36 +01:00
|
|
|
|
|
|
|
namespace GameLogic
|
|
|
|
{
|
|
|
|
class Game
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
Game(void);
|
|
|
|
~Game(void);
|
|
|
|
|
2013-11-19 11:07:14 +01:00
|
|
|
void Init();
|
2013-11-19 09:52:36 +01:00
|
|
|
private:
|
2013-11-19 11:07:14 +01:00
|
|
|
Level *level;
|
|
|
|
Player *player;
|
|
|
|
|
2013-11-19 09:52:36 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|