17 lines
No EOL
156 B
C++
17 lines
No EOL
156 B
C++
#ifndef _GAME_H_
|
|
#define _GAME_H_
|
|
|
|
#include "board.h"
|
|
|
|
class CTTRTSGame
|
|
{
|
|
public:
|
|
|
|
CTTRTSGame();
|
|
~CTTRTSGame() = default;
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif //_GAME_H_
|