Added Game

cpp and h files
This commit is contained in:
Erik Persson 2013-11-19 09:52:36 +01:00
parent c9e6bbf899
commit 33f9a86945
2 changed files with 34 additions and 0 deletions

12
Code/GameLogic/Game.cpp Normal file
View File

@ -0,0 +1,12 @@
#include "Game.h"
using namespace GameLogic;
Game::Game(void)
{
}
Game::~Game(void)
{
}

22
Code/GameLogic/Game.h Normal file
View File

@ -0,0 +1,22 @@
#ifndef GAME_H
#define GAME_H
namespace GameLogic
{
class Game
{
public:
Game(void);
~Game(void);
private:
};
}
#endif