summaryrefslogtreecommitdiff
path: root/server/gamevariant.h
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2010-11-27 04:20:32 +0100
committerVegard Storheil Eriksen <zyp@jvnv.net>2010-11-27 05:55:00 +0100
commit8bfe5dc896639328329197c32e2276309aa1b83d (patch)
treeeafbdacf4ebea0e9f9f27f6020bab20b29a20089 /server/gamevariant.h
parentd0c5819fb141f5cb174f47616d7c5ea4116e871c (diff)
Removed obsolete files.
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
-