Danbias/Code/GameLogic/Game.h

27 lines
270 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:
2013-11-20 16:01:39 +01:00
Level* level;
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
};
2013-11-20 16:01:39 +01:00
}
2013-11-19 09:52:36 +01:00
#endif