src/proto2/GameState.hh
changeset 96 4a801210096c
parent 94 08bebac3d0c2
child 108 1b93045a5b0a
--- a/src/proto2/GameState.hh	Mon Nov 24 15:18:55 2008 +0000
+++ b/src/proto2/GameState.hh	Mon Nov 24 17:14:29 2008 +0000
@@ -38,14 +38,14 @@
 		}
 
 		void debugInfo ();
+    
+    public:
+        virtual void handleMove (PlayerInput_Move input);
 };
 
 class LocalPlayer : public Player {
     protected:
         LocalPlayer (GameState &state, Vector pos, bool visible) : Player(state, pos, visible) { }
-    
-    public:
-        virtual void handleMove (PlayerInput_Move input);
 };
 
 class RemotePlayer : public Player {