Implement some more base types, including basic units. This should be much closer to final interface
This commit is contained in:
parent
51cdda821d
commit
64f9638352
9 changed files with 174 additions and 74 deletions
13
game/game.h
13
game/game.h
|
@ -1,4 +1,17 @@
|
|||
#ifndef _GAME_H_
|
||||
#define _GAME_H_
|
||||
|
||||
#include "board.h"
|
||||
|
||||
class CTTRTSGame
|
||||
{
|
||||
public:
|
||||
|
||||
CTTRTSGame();
|
||||
~CTTRTSGame() = default;
|
||||
|
||||
private:
|
||||
|
||||
};
|
||||
|
||||
#endif //_GAME_H_
|
Loading…
Add table
Add a link
Reference in a new issue