Danbias/Code/GameLogic/Game.h

31 lines
294 B
C
Raw Normal View History

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
{
2013-11-20 15:47:11 +01:00
private:
private:
GameLogic::Level *level;
GameLogic::Player *player;
2013-11-19 09:52:36 +01:00
public:
2013-11-20 15:47:11 +01:00
Game();
~Game();
2013-11-19 11:07:14 +01:00
void Init();
2013-11-19 18:35:35 +01:00
void StartGame();
void Update();
2013-11-19 09:52:36 +01:00
};
}
#endif