Files
Sourcetrail/bin/app/user/projects/tictactoe/src/game_object.h
T
2017-06-19 22:15:34 +02:00

11 lines
143 B
C++

#ifndef _GAME_OBJECT_
#define _GAME_OBJECT_
class GameObject {
public:
GameObject() {}
virtual ~GameObject() {}
};
#endif // _GAME_OBJECT_