summaryrefslogtreecommitdiff
path: root/server/gamevariant.h
diff options
context:
space:
mode:
Diffstat (limited to 'server/gamevariant.h')
-rw-r--r--server/gamevariant.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/server/gamevariant.h b/server/gamevariant.h
deleted file mode 100644
index 6fb2c56..0000000
--- a/server/gamevariant.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef GAMEVARIANT_H
-#define GAMEVARIANT_H
-
-#include "../common/state.h"
-#include "../common/action.h"
-
-class GameVariant {
- private:
- State game_state;
-
- public:
- virtual ~GameVariant(){};
-
- virtual void round_start() = 0;
- virtual State& round_update() = 0;
- virtual bool round_action(Action action) = 0;
-};
-
-#endif // GAMEVARIANT_H
-