summaryrefslogtreecommitdiffstats
path: root/src/game/client/entity/player_move.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client/entity/player_move.hh')
-rw-r--r--src/game/client/entity/player_move.hh9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/game/client/entity/player_move.hh b/src/game/client/entity/player_move.hh
index 8516308..6e9fa44 100644
--- a/src/game/client/entity/player_move.hh
+++ b/src/game/client/entity/player_move.hh
@@ -1,3 +1,10 @@
+// SPDX-License-Identifier: BSD-2-Clause
+// Copyright (c) 2025 Kirill Dmitrievich
+// File: player_move.hh
+// Description: Player movement
+
+#ifndef CLIENT_ENTITY_PLAYER_MOVE_HH
+#define CLIENT_ENTITY_PLAYER_MOVE_HH
#pragma once
constexpr static float PMOVE_MAX_SPEED_AIR = 16.0f;
@@ -13,3 +20,5 @@ void init(void);
void fixed_update(void);
void update_late(void);
} // namespace player_move
+
+#endif