add missing SinglePlayer.hh
authorterom
Tue, 18 Nov 2008 20:00:04 +0000
changeset 59 5b9b85489ef6
parent 58 a53f5ad69500
child 60 26571fd9a8d1
add missing SinglePlayer.hh
src/proto2/SinglePlayer.hh
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/proto2/SinglePlayer.hh	Tue Nov 18 20:00:04 2008 +0000
@@ -0,0 +1,11 @@
+#ifndef SINGLE_PLAYER_HH
+#define SINGLE_PLAYER_HH
+
+#include "GameState.hh"
+
+class SinglePlayer : public LocalPlayer {
+    public:
+        SinglePlayer (void) : LocalPlayer(Vector(400, 400), true) { }
+};
+
+#endif /* SINGLE_PLAYER_HH */