The dev goes on
[vic.git] / src / command.h
blob7fb249cc0bf476907b3f9d6616178d1f656836b1
1 #ifndef COMMAND_H
2 #define COMMAND_H
4 #include <cstdlib>
5 #include "game.h"
7 class ICommand
9 public:
10 ICommand () {};
11 virtual ~ICommand () {};
13 virtual int execute (Game* g) = 0;
14 virtual int revert (Game* g) = 0;
17 #endif /* COMMAND_H */