diff options
Diffstat (limited to 'src/game/server/player.hpp')
| -rw-r--r-- | src/game/server/player.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/game/server/player.hpp b/src/game/server/player.hpp index 55833d11..9836bffc 100644 --- a/src/game/server/player.hpp +++ b/src/game/server/player.hpp @@ -7,8 +7,9 @@ // player object class PLAYER { + CHARACTER *character; public: - PLAYER(); + PLAYER(int client_id); // TODO: clean this up char skin_name[64]; @@ -41,8 +42,6 @@ public: int max; } latency; - CHARACTER character; - // this is used for snapping so we know how we can clip the view for the player vec2 view_pos; |