src/proto2/SinglePlayer.hh
branchno-netsession
changeset 35 e21cfda0edde
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/proto2/SinglePlayer.hh	Tue Nov 18 22:58:50 2008 +0000
@@ -0,0 +1,11 @@
+#ifndef SINGLE_PLAYER_HH
+#define SINGLE_PLAYER_HH
+
+#include "GameState.hh"
+
+class SinglePlayer : public LocalPlayer {
+    public:
+        SinglePlayer (GameState &state) : LocalPlayer(state, Vector(PLAYER_INITIAL_X, PLAYER_INITIAL_Y), true) { }
+};
+
+#endif /* SINGLE_PLAYER_HH */