From 0f111cf51b00c4e884b7e53b4fd7ff6e38d8af5e Mon Sep 17 00:00:00 2001 From: untodesu Date: Fri, 26 Dec 2025 23:17:56 +0500 Subject: Add include guards and header comments to sources --- src/game/client/entity/player_move.hh | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/game/client/entity/player_move.hh') 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 -- cgit