diff options
| author | untodesu <kirill@untode.su> | 2025-06-29 23:09:09 +0500 |
|---|---|---|
| committer | untodesu <kirill@untode.su> | 2025-06-29 23:09:20 +0500 |
| commit | e98d38816e0b4cd75265ec741b4dc4d8b144ed25 (patch) | |
| tree | c20a807350864d7a58b4fbed8b8ef94aaf2729aa | |
| parent | 3a0c1aa9b1fb82d44ceed8da8bab013b50cccd0e (diff) | |
| download | voxelius-e98d38816e0b4cd75265ec741b4dc4d8b144ed25.tar.bz2 voxelius-e98d38816e0b4cd75265ec741b4dc4d8b144ed25.zip | |
Replace #endif comments because it bothers me
115 files changed, 122 insertions, 114 deletions
diff --git a/src/core/angles.hh b/src/core/angles.hh index a2a3d55..95e42dc 100644 --- a/src/core/angles.hh +++ b/src/core/angles.hh @@ -104,4 +104,4 @@ inline void cxangles::vectors(const glm::fvec3& angles, glm::fvec3* forward, glm } } -#endif /* CORE_ANGLES_HH */ +#endif // CORE_ANGLES_HH diff --git a/src/core/binfile.hh b/src/core/binfile.hh index 21dab40..56a3ddc 100644 --- a/src/core/binfile.hh +++ b/src/core/binfile.hh @@ -7,4 +7,4 @@ struct BinFile final { std::size_t size; }; -#endif /* CORE_BINFILE_HH */ +#endif // CORE_BINFILE_HH diff --git a/src/core/buffer.hh b/src/core/buffer.hh index 1397e16..4706ffe 100644 --- a/src/core/buffer.hh +++ b/src/core/buffer.hh @@ -252,4 +252,4 @@ inline WriteBuffer& WriteBuffer::operator<<(const std::string& value) return *this; } -#endif /* CORE_BUFFER_HH */ +#endif // CORE_BUFFER_HH diff --git a/src/core/cmdline.hh b/src/core/cmdline.hh index 8441a44..6e31076 100644 --- a/src/core/cmdline.hh +++ b/src/core/cmdline.hh @@ -10,4 +10,4 @@ const char* get(const char* option, const char* fallback = nullptr); bool contains(const char* option); } // namespace cmdline -#endif /* CORE_CMDLINE_HH */ +#endif // CORE_CMDLINE_HH diff --git a/src/core/concepts.hh b/src/core/concepts.hh index 47b01d2..9168c1e 100644 --- a/src/core/concepts.hh +++ b/src/core/concepts.hh @@ -12,4 +12,4 @@ template<typename T> concept FloatingPoint = std::is_floating_point_v<T>; } // namespace vx -#endif /* CORE_CONCEPTS_HH */ +#endif // CORE_CONCEPTS_HH diff --git a/src/core/config.hh b/src/core/config.hh index a7f8500..c3921a8 100644 --- a/src/core/config.hh +++ b/src/core/config.hh @@ -179,4 +179,4 @@ inline void ConfigNumber<T>::set_limits(T min_value, T max_value) m_string = std::to_string(m_value); } -#endif /* CORE_CONFIG_HH */ +#endif // CORE_CONFIG_HH diff --git a/src/core/constexpr.hh b/src/core/constexpr.hh index 18c83c0..0c122e0 100644 --- a/src/core/constexpr.hh +++ b/src/core/constexpr.hh @@ -188,4 +188,4 @@ constexpr static inline const T vx::smoothstep(const T x, const T y, const F a) return static_cast<T>(t * t * (F(3) - F(2) * t)); } -#endif /* CORE_CONSTEXPR_HH */ +#endif // CORE_CONSTEXPR_HH diff --git a/src/core/crc64.hh b/src/core/crc64.hh index da4ad2c..642afea 100644 --- a/src/core/crc64.hh +++ b/src/core/crc64.hh @@ -9,4 +9,4 @@ std::uint64_t get(const std::vector<std::byte>& buffer, std::uint64_t combine = std::uint64_t get(const std::string& buffer, std::uint64_t combine = UINT64_C(0)); } // namespace crc64 -#endif /* CORE_CRC64_HH */ +#endif // CORE_CRC64_HH diff --git a/src/core/epoch.hh b/src/core/epoch.hh index f590f27..b17aadf 100644 --- a/src/core/epoch.hh +++ b/src/core/epoch.hh @@ -16,4 +16,4 @@ std::int64_t signed_milliseconds(void); std::int64_t signed_microseconds(void); } // namespace epoch -#endif /* CORE_EPOCH_HH */ +#endif // CORE_EPOCH_HH diff --git a/src/core/floathacks.hh b/src/core/floathacks.hh index 29b7cac..b81f98c 100644 --- a/src/core/floathacks.hh +++ b/src/core/floathacks.hh @@ -53,4 +53,4 @@ static inline std::uint32_t floathacks::float_to_uint32(const float value) return hack.dst; } -#endif /* CORE_FLOATHACKS_HH */ +#endif // CORE_FLOATHACKS_HH diff --git a/src/core/image.hh b/src/core/image.hh index 92d99be..b5c69e0 100644 --- a/src/core/image.hh +++ b/src/core/image.hh @@ -10,4 +10,4 @@ struct Image final { glm::ivec2 size; }; -#endif /* CORE_IMAGE_HH */ +#endif // CORE_IMAGE_HH diff --git a/src/core/macros.hh b/src/core/macros.hh index 9a76109..fbbe10c 100644 --- a/src/core/macros.hh +++ b/src/core/macros.hh @@ -16,4 +16,4 @@ public: \ public: \ class_name(void) = default -#endif /* CORE_MACROS_HH */ +#endif // CORE_MACROS_HH diff --git a/src/core/pch.hh b/src/core/pch.hh index 795a287..924b1dd 100644 --- a/src/core/pch.hh +++ b/src/core/pch.hh @@ -47,4 +47,4 @@ #include <stb_image.h> #include <stb_image_write.h> -#endif /* CORE_PCH_HH */ +#endif // CORE_PCH_HH diff --git a/src/core/randomizer.hh b/src/core/randomizer.hh index b60b839..4d1bb83 100644 --- a/src/core/randomizer.hh +++ b/src/core/randomizer.hh @@ -54,4 +54,4 @@ inline void Randomizer<T>::clear(void) m_dist = std::uniform_int_distribution<std::size_t>(0, 0); } -#endif /* CORE_RANDOMIZER_HH */ +#endif // CORE_RANDOMIZER_HH diff --git a/src/core/resource.hh b/src/core/resource.hh index ab7b74f..3b9fff0 100644 --- a/src/core/resource.hh +++ b/src/core/resource.hh @@ -15,4 +15,4 @@ template<typename T> void soft_cleanup(void); } // namespace resource -#endif /* CORE_RESOURCE_HH */ +#endif // CORE_RESOURCE_HH diff --git a/src/core/strtools.hh b/src/core/strtools.hh index 1462978..476a5f7 100644 --- a/src/core/strtools.hh +++ b/src/core/strtools.hh @@ -18,4 +18,4 @@ namespace strtools std::string trim_whitespace(const std::string& string); } // namespace strtools -#endif /* CORE_STRTOOLS_HH */ +#endif // CORE_STRTOOLS_HH diff --git a/src/core/vectors.hh b/src/core/vectors.hh index a6e9c75..11ba2a1 100644 --- a/src/core/vectors.hh +++ b/src/core/vectors.hh @@ -44,4 +44,4 @@ constexpr static inline const T vx::distance2(const glm::vec<3, T>& vector_a, co return vx::length2(vector_a - vector_b); } -#endif /* CORE_VECTORS_HH */ +#endif // CORE_VECTORS_HH diff --git a/src/core/version.hh b/src/core/version.hh index fc4d48a..627df17 100644 --- a/src/core/version.hh +++ b/src/core/version.hh @@ -9,4 +9,4 @@ extern const unsigned long project_version_tweak; extern const char* project_version_string; -#endif /* CORE_VERSION_HH */ +#endif // CORE_VERSION_HH diff --git a/src/game/client/background.hh b/src/game/client/background.hh index 634caf5..3f06175 100644 --- a/src/game/client/background.hh +++ b/src/game/client/background.hh @@ -9,4 +9,4 @@ void deinit(void); void layout(void); } // namespace background -#endif /* CLIENT_BACKGROUND_HH */ +#endif // CLIENT_BACKGROUND_HH diff --git a/src/game/client/bother.hh b/src/game/client/bother.hh index 5fbf247..fab62d1 100644 --- a/src/game/client/bother.hh +++ b/src/game/client/bother.hh @@ -20,4 +20,4 @@ void ping(unsigned int identity, const char* host, std::uint16_t port); void cancel(unsigned int identity); } // namespace bother -#endif /* CLIENT_BOTHER_HH */ +#endif // CLIENT_BOTHER_HH diff --git a/src/game/client/camera.hh b/src/game/client/camera.hh index 9718720..7cdce3b 100644 --- a/src/game/client/camera.hh +++ b/src/game/client/camera.hh @@ -29,4 +29,4 @@ void init(void); void update(void); } // namespace camera -#endif /* CLIENT_CAMERA_HH */ +#endif // CLIENT_CAMERA_HH diff --git a/src/game/client/chat.hh b/src/game/client/chat.hh index f2ee4de..6eb77fd 100644 --- a/src/game/client/chat.hh +++ b/src/game/client/chat.hh @@ -18,4 +18,4 @@ void refresh_timings(void); void print(const std::string& string); } // namespace client_chat -#endif /* CLIENT_CHAT_HH */ +#endif // CLIENT_CHAT_HH diff --git a/src/game/client/chunk_mesher.hh b/src/game/client/chunk_mesher.hh index 36580ac..ab65fae 100644 --- a/src/game/client/chunk_mesher.hh +++ b/src/game/client/chunk_mesher.hh @@ -16,4 +16,4 @@ void deinit(void); void update(void); } // namespace chunk_mesher -#endif /* CLIENT_CHUNK_MESHER_HH */ +#endif // CLIENT_CHUNK_MESHER_HH diff --git a/src/game/client/chunk_quad.hh b/src/game/client/chunk_quad.hh index 337bb1e..cb2c03d 100644 --- a/src/game/client/chunk_quad.hh +++ b/src/game/client/chunk_quad.hh @@ -36,4 +36,4 @@ constexpr inline static ChunkQuad make_chunk_quad( return result; } -#endif /* CLIENT_CHUNK_QUAD_HH */ +#endif // CLIENT_CHUNK_QUAD_HH diff --git a/src/game/client/chunk_renderer.hh b/src/game/client/chunk_renderer.hh index 3ebcf76..84688f7 100644 --- a/src/game/client/chunk_renderer.hh +++ b/src/game/client/chunk_renderer.hh @@ -9,4 +9,4 @@ void deinit(void); void render(void); } // namespace chunk_renderer -#endif /* CLIENT_CHUNK_RENDERER_HH */ +#endif // CLIENT_CHUNK_RENDERER_HH diff --git a/src/game/client/chunk_vbo.hh b/src/game/client/chunk_vbo.hh index ba27552..899abc6 100644 --- a/src/game/client/chunk_vbo.hh +++ b/src/game/client/chunk_vbo.hh @@ -20,4 +20,4 @@ public: } }; -#endif /* CLIENT_CHUNK_VBO_HH */ +#endif // CLIENT_CHUNK_VBO_HH diff --git a/src/game/client/chunk_visibility.hh b/src/game/client/chunk_visibility.hh index 70352c9..9c0eed1 100644 --- a/src/game/client/chunk_visibility.hh +++ b/src/game/client/chunk_visibility.hh @@ -9,4 +9,4 @@ namespace chunk_visibility void update_late(void); } // namespace chunk_visibility -#endif /* CLIENT_CHUNK_VISIBILITY_HH */ +#endif // CLIENT_CHUNK_VISIBILITY_HH diff --git a/src/game/client/const.hh b/src/game/client/const.hh index 9bd8346..c53fc1b 100644 --- a/src/game/client/const.hh +++ b/src/game/client/const.hh @@ -24,4 +24,4 @@ static_assert(DEFAULT_HEIGHT >= MIN_HEIGHT); constexpr static float MIN_PITCH = 0.0625f; constexpr static float MAX_PITCH = 10.0f; -#endif /* CLIENT_CONST_HH */ +#endif // CLIENT_CONST_HH diff --git a/src/game/client/crosshair.hh b/src/game/client/crosshair.hh index 6525792..8bcf86b 100644 --- a/src/game/client/crosshair.hh +++ b/src/game/client/crosshair.hh @@ -9,4 +9,4 @@ void deinit(void); void layout(void); } // namespace crosshair -#endif /* CLIENT_CROSSHAIR_HH */ +#endif // CLIENT_CROSSHAIR_HH diff --git a/src/game/client/direct_connection.hh b/src/game/client/direct_connection.hh index f94bcaf..f07f57d 100644 --- a/src/game/client/direct_connection.hh +++ b/src/game/client/direct_connection.hh @@ -8,4 +8,4 @@ void init(void); void layout(void); } // namespace direct_connection -#endif /* CLIENT_DIRECT_CONNECTION_HH */ +#endif // CLIENT_DIRECT_CONNECTION_HH diff --git a/src/game/client/experiments.hh b/src/game/client/experiments.hh index ae20426..7a83048 100644 --- a/src/game/client/experiments.hh +++ b/src/game/client/experiments.hh @@ -17,4 +17,4 @@ void attack(void); void interact(void); } // namespace experiments -#endif /* CLIENT_EXPERIMENTS_HH */ +#endif // CLIENT_EXPERIMENTS_HH diff --git a/src/game/client/factory.hh b/src/game/client/factory.hh index 6f883c2..29a3757 100644 --- a/src/game/client/factory.hh +++ b/src/game/client/factory.hh @@ -9,4 +9,4 @@ namespace client_factory void create_player(Dimension* dimension, entt::entity entity); } // namespace client_factory -#endif /* CLIENT_FACTORY_HH */ +#endif // CLIENT_FACTORY_HH diff --git a/src/game/client/game.hh b/src/game/client/game.hh index f3c6fc4..0735719 100644 --- a/src/game/client/game.hh +++ b/src/game/client/game.hh @@ -33,4 +33,4 @@ void render(void); void layout(void); } // namespace client_game -#endif /* CLIENT_GAME_HH */ +#endif // CLIENT_GAME_HH diff --git a/src/game/client/gamepad.hh b/src/game/client/gamepad.hh index d2483b7..692422e 100644 --- a/src/game/client/gamepad.hh +++ b/src/game/client/gamepad.hh @@ -42,4 +42,4 @@ struct GamepadButtonEvent final { int button; }; -#endif /* CLIENT_GAMEPAD_HH */ +#endif // CLIENT_GAMEPAD_HH diff --git a/src/game/client/gamepad_axis.hh b/src/game/client/gamepad_axis.hh index c0ed6ee..6a1f761 100644 --- a/src/game/client/gamepad_axis.hh +++ b/src/game/client/gamepad_axis.hh @@ -36,4 +36,4 @@ private: const char* m_name; }; -#endif /* CLIENT_GAMEPAD_AXIS_HH */ +#endif // CLIENT_GAMEPAD_AXIS_HH diff --git a/src/game/client/gamepad_button.hh b/src/game/client/gamepad_button.hh index 04b3a41..079988e 100644 --- a/src/game/client/gamepad_button.hh +++ b/src/game/client/gamepad_button.hh @@ -26,4 +26,4 @@ private: const char* m_name; }; -#endif /* CLIENT_GAMEPAD_BUTTON_HH */ +#endif // CLIENT_GAMEPAD_BUTTON_HH diff --git a/src/game/client/glfw.hh b/src/game/client/glfw.hh index 9cdf734..d978429 100644 --- a/src/game/client/glfw.hh +++ b/src/game/client/glfw.hh @@ -34,4 +34,4 @@ struct GlfwScrollEvent final { float dy; }; -#endif /* CLIENTFW */ +#endif // CLIENTFW diff --git a/src/game/client/globals.hh b/src/game/client/globals.hh index 3fc2223..a59b8bf 100644 --- a/src/game/client/globals.hh +++ b/src/game/client/globals.hh @@ -63,4 +63,4 @@ extern ALCdevice* sound_dev; extern ALCcontext* sound_ctx; } // namespace globals -#endif /* CLIENTOBALS_HH */ +#endif // CLIENTOBALS_HH diff --git a/src/game/client/gui_screen.hh b/src/game/client/gui_screen.hh index edad116..b36e6b2 100644 --- a/src/game/client/gui_screen.hh +++ b/src/game/client/gui_screen.hh @@ -11,4 +11,4 @@ constexpr static unsigned int GUI_MESSAGE_BOX = 0x0005U; constexpr static unsigned int GUI_CHAT = 0x0006U; constexpr static unsigned int GUI_DIRECT_CONNECTION = 0x0007U; -#endif /* CLIENT_GUI_SCREEN_HH */ +#endif // CLIENT_GUI_SCREEN_HH diff --git a/src/game/client/hotbar.hh b/src/game/client/hotbar.hh index 318c631..186bc6e 100644 --- a/src/game/client/hotbar.hh +++ b/src/game/client/hotbar.hh @@ -28,4 +28,4 @@ void next_slot(void); void prev_slot(void); } // namespace hotbar -#endif /* CLIENT_HOTBAR_HH */ +#endif // CLIENT_HOTBAR_HH diff --git a/src/game/client/imdraw_ext.hh b/src/game/client/imdraw_ext.hh index 0a84e69..04d3b68 100644 --- a/src/game/client/imdraw_ext.hh +++ b/src/game/client/imdraw_ext.hh @@ -8,4 +8,4 @@ void text_shadow( const std::string& text, const ImVec2& position, ImU32 text_color, ImU32 shadow_color, ImFont* font, ImDrawList* draw_list); } // namespace imdraw_ext -#endif /* CLIENT_IMDRAW_EXT_HH */ +#endif // CLIENT_IMDRAW_EXT_HH diff --git a/src/game/client/interpolation.hh b/src/game/client/interpolation.hh index 3565a26..677f31b 100644 --- a/src/game/client/interpolation.hh +++ b/src/game/client/interpolation.hh @@ -7,4 +7,4 @@ namespace interpolation void update(void); } // namespace interpolation -#endif /* CLIENT_INTERPOLATION_HH */ +#endif // CLIENT_INTERPOLATION_HH diff --git a/src/game/client/keybind.hh b/src/game/client/keybind.hh index 8cf3c3c..1749357 100644 --- a/src/game/client/keybind.hh +++ b/src/game/client/keybind.hh @@ -23,4 +23,4 @@ private: int m_glfw_keycode; }; -#endif /* CLIENT_KEYBIND_HH */ +#endif // CLIENT_KEYBIND_HH diff --git a/src/game/client/language.hh b/src/game/client/language.hh index 680cd92..44f6834 100644 --- a/src/game/client/language.hh +++ b/src/game/client/language.hh @@ -40,4 +40,4 @@ const char* resolve(const char* key); std::string resolve_gui(const char* key); } // namespace language -#endif /* CLIENT_LANGUAGE_HH */ +#endif // CLIENT_LANGUAGE_HH diff --git a/src/game/client/listener.hh b/src/game/client/listener.hh index 731babc..fbf9f4a 100644 --- a/src/game/client/listener.hh +++ b/src/game/client/listener.hh @@ -7,4 +7,4 @@ namespace listener void update(void); } // namespace listener -#endif /* CLIENT_LISTENER_HH */ +#endif // CLIENT_LISTENER_HH diff --git a/src/game/client/main_menu.hh b/src/game/client/main_menu.hh index 9166722..f127c5f 100644 --- a/src/game/client/main_menu.hh +++ b/src/game/client/main_menu.hh @@ -9,4 +9,4 @@ void deinit(void); void layout(void); } // namespace main_menu -#endif /* CLIENT_MAIN_MENU_HH */ +#endif // CLIENT_MAIN_MENU_HH diff --git a/src/game/client/message_box.hh b/src/game/client/message_box.hh index 7ea2466..ad5cb57 100644 --- a/src/game/client/message_box.hh +++ b/src/game/client/message_box.hh @@ -18,4 +18,4 @@ void set_subtitle(const char* subtitle); void add_button(const char* text, const message_box_action& action); } // namespace message_box -#endif /* CLIENT_MESSAGE_BOX_HH */ +#endif // CLIENT_MESSAGE_BOX_HH diff --git a/src/game/client/metrics.hh b/src/game/client/metrics.hh index ba68a86..1f13761 100644 --- a/src/game/client/metrics.hh +++ b/src/game/client/metrics.hh @@ -8,4 +8,4 @@ void init(void); void layout(void); } // namespace metrics -#endif /* CLIENT_METRICS_HH */ +#endif // CLIENT_METRICS_HH diff --git a/src/game/client/outline.hh b/src/game/client/outline.hh index a7789b2..da8e232 100644 --- a/src/game/client/outline.hh +++ b/src/game/client/outline.hh @@ -17,4 +17,4 @@ void cube(const chunk_pos& cpos, const glm::fvec3& fpos, const glm::fvec3& size, void line(const chunk_pos& cpos, const glm::fvec3& fpos, const glm::fvec3& size, float thickness, const glm::fvec4& color); } // namespace outline -#endif /* CLIENT_OUTLINE_HH */ +#endif // CLIENT_OUTLINE_HH diff --git a/src/game/client/pch.hh b/src/game/client/pch.hh index df9d2b5..98c5e52 100644 --- a/src/game/client/pch.hh +++ b/src/game/client/pch.hh @@ -29,4 +29,4 @@ #include <dlfcn.h> #endif -#endif /* CLIENT_PCH_HH */ +#endif // CLIENT_PCH_HH diff --git a/src/game/client/play_menu.hh b/src/game/client/play_menu.hh index 44193df..ddf97f9 100644 --- a/src/game/client/play_menu.hh +++ b/src/game/client/play_menu.hh @@ -10,4 +10,4 @@ void layout(void); void update_late(void); } // namespace play_menu -#endif /* CLIENT_PLAY_MENU_HH */ +#endif // CLIENT_PLAY_MENU_HH diff --git a/src/game/client/player_look.hh b/src/game/client/player_look.hh index c10df0e..84e0e96 100644 --- a/src/game/client/player_look.hh +++ b/src/game/client/player_look.hh @@ -8,4 +8,4 @@ void init(void); void update_late(void); } // namespace player_look -#endif /* CLIENT_PLAYER_LOOK_HH */ +#endif // CLIENT_PLAYER_LOOK_HH diff --git a/src/game/client/player_move.hh b/src/game/client/player_move.hh index 7730d08..27fb2dc 100644 --- a/src/game/client/player_move.hh +++ b/src/game/client/player_move.hh @@ -16,4 +16,4 @@ void fixed_update(void); void update_late(void); } // namespace player_move -#endif /* CLIENT_PLAYER_MOVE_HH */ +#endif // CLIENT_PLAYER_MOVE_HH diff --git a/src/game/client/player_target.hh b/src/game/client/player_target.hh index b60d1a5..d49c1d2 100644 --- a/src/game/client/player_target.hh +++ b/src/game/client/player_target.hh @@ -19,4 +19,4 @@ void update(void); void render(void); } // namespace player_target -#endif /* CLIENT_PLAYER_TARGET_HH */ +#endif // CLIENT_PLAYER_TARGET_HH diff --git a/src/game/client/program.hh b/src/game/client/program.hh index 4d83e14..ce2538b 100644 --- a/src/game/client/program.hh +++ b/src/game/client/program.hh @@ -35,4 +35,4 @@ public: GLuint handle; }; -#endif /* CLIENT_PROGRAM_HH */ +#endif // CLIENT_PROGRAM_HH diff --git a/src/game/client/progress_bar.hh b/src/game/client/progress_bar.hh index 5375d3f..96524dd 100644 --- a/src/game/client/progress_bar.hh +++ b/src/game/client/progress_bar.hh @@ -17,4 +17,4 @@ void set_title(const char* title); void set_button(const char* text, const progress_bar_action& action); } // namespace progress_bar -#endif /* CLIENT_PROGRESS_BAR_HH */ +#endif // CLIENT_PROGRESS_BAR_HH diff --git a/src/game/client/receive.hh b/src/game/client/receive.hh index 27ed2b2..1b793b0 100644 --- a/src/game/client/receive.hh +++ b/src/game/client/receive.hh @@ -7,4 +7,4 @@ namespace client_receive void init(void); } // namespace client_receive -#endif /* CLIENT_RECEIVE_HH */ +#endif // CLIENT_RECEIVE_HH diff --git a/src/game/client/scoreboard.hh b/src/game/client/scoreboard.hh index 0ae1688..58e2f8b 100644 --- a/src/game/client/scoreboard.hh +++ b/src/game/client/scoreboard.hh @@ -8,4 +8,4 @@ void init(void); void layout(void); } // namespace scoreboard -#endif /* CLIENT_SCOREBOARD_HH */ +#endif // CLIENT_SCOREBOARD_HH diff --git a/src/game/client/screenshot.hh b/src/game/client/screenshot.hh index 9888644..7cb8cd5 100644 --- a/src/game/client/screenshot.hh +++ b/src/game/client/screenshot.hh @@ -8,4 +8,4 @@ void init(void); void take(void); } // namespace screenshot -#endif /* CLIENT_SCREENSHOT_HH */ +#endif // CLIENT_SCREENSHOT_HH diff --git a/src/game/client/session.hh b/src/game/client/session.hh index 051b57f..0ba0fc6 100644 --- a/src/game/client/session.hh +++ b/src/game/client/session.hh @@ -28,4 +28,4 @@ namespace session bool is_ingame(void); } // namespace session -#endif /* CLIENT_SESSION_HH */ +#endif // CLIENT_SESSION_HH diff --git a/src/game/client/settings.hh b/src/game/client/settings.hh index 4704a58..388fdab 100644 --- a/src/game/client/settings.hh +++ b/src/game/client/settings.hh @@ -80,4 +80,4 @@ namespace settings void add_language_select(int priority, settings_location location, const char* name); } // namespace settings -#endif /* CLIENT_SETTINGS_HH */ +#endif // CLIENT_SETTINGS_HH diff --git a/src/game/client/skybox.hh b/src/game/client/skybox.hh index a3853f0..9a23029 100644 --- a/src/game/client/skybox.hh +++ b/src/game/client/skybox.hh @@ -12,4 +12,4 @@ namespace skybox void init(void); } // namespace skybox -#endif /* CLIENT_SKYBOX_HH */ +#endif // CLIENT_SKYBOX_HH diff --git a/src/game/client/sound.hh b/src/game/client/sound.hh index 2701ae0..23fbca9 100644 --- a/src/game/client/sound.hh +++ b/src/game/client/sound.hh @@ -40,4 +40,4 @@ void play_player(resource_ptr<SoundEffect> sound, bool looping, float pitch); void play_ui(resource_ptr<SoundEffect> sound, bool looping, float pitch); } // namespace sound -#endif /* CLIENT_SOUND_HH */ +#endif // CLIENT_SOUND_HH diff --git a/src/game/client/sound_effect.hh b/src/game/client/sound_effect.hh index 83b5e4d..8b1372b 100644 --- a/src/game/client/sound_effect.hh +++ b/src/game/client/sound_effect.hh @@ -7,4 +7,4 @@ struct SoundEffect final { ALuint buffer; }; -#endif /* CLIENT_SOUND_EFFECT_HH */ +#endif // CLIENT_SOUND_EFFECT_HH diff --git a/src/game/client/sound_emitter.hh b/src/game/client/sound_emitter.hh index 88d99eb..17598ad 100644 --- a/src/game/client/sound_emitter.hh +++ b/src/game/client/sound_emitter.hh @@ -18,4 +18,4 @@ public: static void update(void); }; -#endif /* CLIENT_SOUND_EMITTER_HH */ +#endif // CLIENT_SOUND_EMITTER_HH diff --git a/src/game/client/splash.hh b/src/game/client/splash.hh index 2b66e2c..e930470 100644 --- a/src/game/client/splash.hh +++ b/src/game/client/splash.hh @@ -9,4 +9,4 @@ void init_late(void); void render(void); } // namespace client_splash -#endif /* CLIENT_SPLASH_HH */ +#endif // CLIENT_SPLASH_HH diff --git a/src/game/client/status_lines.hh b/src/game/client/status_lines.hh index c252a34..88bf986 100644 --- a/src/game/client/status_lines.hh +++ b/src/game/client/status_lines.hh @@ -19,4 +19,4 @@ void set(unsigned int line, const std::string& text, const ImVec4& color, float void unset(unsigned int line); } // namespace status_lines -#endif /* CLIENT_STATUS_LINES_HH */ +#endif // CLIENT_STATUS_LINES_HH diff --git a/src/game/client/texture_gui.hh b/src/game/client/texture_gui.hh index 97a91b4..855596e 100644 --- a/src/game/client/texture_gui.hh +++ b/src/game/client/texture_gui.hh @@ -14,4 +14,4 @@ struct TextureGUI { glm::ivec2 size; }; -#endif /* CLIENT_TEXTURE2D_HH */ +#endif // CLIENT_TEXTURE2D_HH diff --git a/src/game/client/toast.hh b/src/game/client/toast.hh new file mode 100644 index 0000000..0d32304 --- /dev/null +++ b/src/game/client/toast.hh @@ -0,0 +1,8 @@ +#ifndef CLIENT_TOAST_HH +#define CLIENT_TOAST_HH +#pragma once + +// You did not see a thing +// This file was committed by a mistake + +#endif // CLIENT_TOAST_HH diff --git a/src/game/client/toggles.hh b/src/game/client/toggles.hh index d892d33..86ef7ea 100644 --- a/src/game/client/toggles.hh +++ b/src/game/client/toggles.hh @@ -36,4 +36,4 @@ bool get(toggle_type type); void set(toggle_type type, bool value); } // namespace toggles -#endif /* CLIENT_TOGGLES_HH */ +#endif // CLIENT_TOGGLES_HH diff --git a/src/game/client/voxel_anims.hh b/src/game/client/voxel_anims.hh index 5d6b9f9..fe0b75f 100644 --- a/src/game/client/voxel_anims.hh +++ b/src/game/client/voxel_anims.hh @@ -14,4 +14,4 @@ void init(void); void update(void); } // namespace voxel_anims -#endif /* CLIENT_VOXEL_ANIMS_HH */ +#endif // CLIENT_VOXEL_ANIMS_HH diff --git a/src/game/client/voxel_atlas.hh b/src/game/client/voxel_atlas.hh index 67036ca..724b482 100644 --- a/src/game/client/voxel_atlas.hh +++ b/src/game/client/voxel_atlas.hh @@ -26,4 +26,4 @@ AtlasStrip* find_or_load(const std::vector<std::string>& paths); AtlasStrip* find(const std::vector<std::string>& paths); } // namespace voxel_atlas -#endif /* CLIENT_VOXEL_ATLAS_HH */ +#endif // CLIENT_VOXEL_ATLAS_HH diff --git a/src/game/client/voxel_sounds.hh b/src/game/client/voxel_sounds.hh index ed11c0f..37e1fe9 100644 --- a/src/game/client/voxel_sounds.hh +++ b/src/game/client/voxel_sounds.hh @@ -20,4 +20,4 @@ resource_ptr<SoundEffect> get_footsteps(voxel_surface surface); resource_ptr<SoundEffect> get_placebreak(voxel_surface surface); } // namespace voxel_sounds -#endif /* CLIENT_VOXEL_SOUNDS_HH */ +#endif // CLIENT_VOXEL_SOUNDS_HH diff --git a/src/game/client/window_title.hh b/src/game/client/window_title.hh index 25051c8..268cad6 100644 --- a/src/game/client/window_title.hh +++ b/src/game/client/window_title.hh @@ -7,4 +7,4 @@ namespace window_title void update(void); } // namespace window_title -#endif /* CLIENT_WINDOW_TITLE_HH */ +#endif // CLIENT_WINDOW_TITLE_HH diff --git a/src/game/server/chat.hh b/src/game/server/chat.hh index 2557290..524ea78 100644 --- a/src/game/server/chat.hh +++ b/src/game/server/chat.hh @@ -13,4 +13,4 @@ void send(Session* session, const char* message); void send(Session* session, const char* message, const char* sender); } // namespace server_chat -#endif /* SERVER_CHAT_HH */ +#endif // SERVER_CHAT_HH diff --git a/src/game/server/game.hh b/src/game/server/game.hh index 98c6bf3..a770189 100644 --- a/src/game/server/game.hh +++ b/src/game/server/game.hh @@ -23,4 +23,4 @@ void fixed_update(void); void fixed_update_late(void); } // namespace server_game -#endif /* SERVER_GAME_HH */ +#endif // SERVER_GAME_HH diff --git a/src/game/server/globals.hh b/src/game/server/globals.hh index 54f025a..3ae2226 100644 --- a/src/game/server/globals.hh +++ b/src/game/server/globals.hh @@ -22,4 +22,4 @@ extern Dimension* spawn_dimension; extern std::unordered_map<std::string, Dimension*> dimensions; } // namespace globals -#endif /* SERVER_GLOBALS_HH */ +#endif // SERVER_GLOBALS_HH diff --git a/src/game/server/inhabited.hh b/src/game/server/inhabited.hh index c68ddaa..982fe5d 100644 --- a/src/game/server/inhabited.hh +++ b/src/game/server/inhabited.hh @@ -4,4 +4,4 @@ struct InhabitedComponent final {}; -#endif /* SERVER_INHABITED_HH */ +#endif // SERVER_INHABITED_HH diff --git a/src/game/server/overworld.hh b/src/game/server/overworld.hh index 972a91d..fa3eb42 100644 --- a/src/game/server/overworld.hh +++ b/src/game/server/overworld.hh @@ -60,4 +60,4 @@ private: std::mutex m_mutex; }; -#endif /* SERVER_OVERWORLD_HH */ +#endif // SERVER_OVERWORLD_HH diff --git a/src/game/server/pch.hh b/src/game/server/pch.hh index 89b396b..810a7e4 100644 --- a/src/game/server/pch.hh +++ b/src/game/server/pch.hh @@ -4,4 +4,4 @@ #include <shared/pch.hh> -#endif /* SERVER_PCH_HH */ +#endif // SERVER_PCH_HH diff --git a/src/game/server/receive.hh b/src/game/server/receive.hh index 57090b5..17333d0 100644 --- a/src/game/server/receive.hh +++ b/src/game/server/receive.hh @@ -7,4 +7,4 @@ namespace server_recieve void init(void); } // namespace server_recieve -#endif /* SERVER_RECEIVE_HH */ +#endif // SERVER_RECEIVE_HH diff --git a/src/game/server/sessions.hh b/src/game/server/sessions.hh index b9a6348..7c9d13e 100644 --- a/src/game/server/sessions.hh +++ b/src/game/server/sessions.hh @@ -50,4 +50,4 @@ namespace sessions void refresh_scoreboard(void); } // namespace sessions -#endif /* SERVER_SESSIONS_HH */ +#endif // SERVER_SESSIONS_HH diff --git a/src/game/server/status.hh b/src/game/server/status.hh index 5f939f7..218eab0 100644 --- a/src/game/server/status.hh +++ b/src/game/server/status.hh @@ -7,4 +7,4 @@ namespace status void init(void); } // namespace status -#endif /* SERVER_STATUS_HH */ +#endif // SERVER_STATUS_HH diff --git a/src/game/server/universe.hh b/src/game/server/universe.hh index 2a16806..132d8a1 100644 --- a/src/game/server/universe.hh +++ b/src/game/server/universe.hh @@ -22,4 +22,4 @@ void save_chunk(Dimension* dimension, const chunk_pos& cpos); void save_all_chunks(Dimension* dimension); } // namespace universe -#endif /* SERVER_UNIVERSE_HH */ +#endif // SERVER_UNIVERSE_HH diff --git a/src/game/server/unloader.hh b/src/game/server/unloader.hh index 414cdc4..6648a1f 100644 --- a/src/game/server/unloader.hh +++ b/src/game/server/unloader.hh @@ -11,4 +11,4 @@ void init_late(void); void fixed_update_late(Dimension* dimension); } // namespace unloader -#endif /* SERVER_UNLOADER_HH */ +#endif // SERVER_UNLOADER_HH diff --git a/src/game/server/whitelist.hh b/src/game/server/whitelist.hh index fe7656b..e754a02 100644 --- a/src/game/server/whitelist.hh +++ b/src/game/server/whitelist.hh @@ -24,4 +24,4 @@ bool contains(const char* username); bool matches(const char* username, std::uint64_t password_hash); } // namespace whitelist -#endif /* SERVER_WHITELIST_HH */ +#endif // SERVER_WHITELIST_HH diff --git a/src/game/server/worldgen.hh b/src/game/server/worldgen.hh index b0127e5..e355ab9 100644 --- a/src/game/server/worldgen.hh +++ b/src/game/server/worldgen.hh @@ -18,4 +18,4 @@ bool is_generating(Dimension* dimension, const chunk_pos& cpos); void request_chunk(Session* session, const chunk_pos& cpos); } // namespace worldgen -#endif /* SERVER_WORLDGEN_HH */ +#endif // SERVER_WORLDGEN_HH diff --git a/src/game/shared/chunk.hh b/src/game/shared/chunk.hh index 67bedae..2603537 100644 --- a/src/game/shared/chunk.hh +++ b/src/game/shared/chunk.hh @@ -36,4 +36,4 @@ private: unsigned int m_biome; }; -#endif /* SHARED_CHUNK_HH */ +#endif // SHARED_CHUNK_HH diff --git a/src/game/shared/chunk_aabb.hh b/src/game/shared/chunk_aabb.hh index 7a35dd4..abc629b 100644 --- a/src/game/shared/chunk_aabb.hh +++ b/src/game/shared/chunk_aabb.hh @@ -29,4 +29,4 @@ public: chunk_pos max; }; -#endif /* SHARED_CHUNK_AABB */ +#endif // SHARED_CHUNK_AABB diff --git a/src/game/shared/collision.hh b/src/game/shared/collision.hh index 641a803..1d2b358 100644 --- a/src/game/shared/collision.hh +++ b/src/game/shared/collision.hh @@ -16,4 +16,4 @@ public: static void fixed_update(Dimension* dimension); }; -#endif /* SHARED_COLLISION_HH */ +#endif // SHARED_COLLISION_HH diff --git a/src/game/shared/const.hh b/src/game/shared/const.hh index 4639c4b..4061481 100644 --- a/src/game/shared/const.hh +++ b/src/game/shared/const.hh @@ -44,4 +44,4 @@ constexpr static glm::vec<2, T> ZERO_VEC2 = glm::vec<2, T>(0, 0); template<typename T> constexpr static glm::vec<3, T> ZERO_VEC3 = glm::vec<3, T>(0, 0, 0); -#endif /* SHARED_CONST_HH */ +#endif // SHARED_CONST_HH diff --git a/src/game/shared/coord.hh b/src/game/shared/coord.hh index f1a2e70..72d2909 100644 --- a/src/game/shared/coord.hh +++ b/src/game/shared/coord.hh @@ -146,4 +146,4 @@ inline constexpr glm::fvec3 coord::to_fvec3(const chunk_pos& cpos, const glm::fv }; } -#endif /* SHARED_COORD_HH */ +#endif // SHARED_COORD_HH diff --git a/src/game/shared/dimension.hh b/src/game/shared/dimension.hh index c609a14..398a4ce 100644 --- a/src/game/shared/dimension.hh +++ b/src/game/shared/dimension.hh @@ -82,4 +82,4 @@ struct VoxelSetEvent final { Chunk* chunk; }; -#endif /* SHARED_DIMENSION_HH */ +#endif // SHARED_DIMENSION_HH diff --git a/src/game/shared/factory.hh b/src/game/shared/factory.hh index c3449dd..ff39a00 100644 --- a/src/game/shared/factory.hh +++ b/src/game/shared/factory.hh @@ -9,4 +9,4 @@ namespace shared_factory void create_player(Dimension* dimension, entt::entity entity); } // namespace shared_factory -#endif /* SHARED_FACTORY */ +#endif // SHARED_FACTORY diff --git a/src/game/shared/feature.hh b/src/game/shared/feature.hh index 04f38e8..b676adb 100644 --- a/src/game/shared/feature.hh +++ b/src/game/shared/feature.hh @@ -19,4 +19,4 @@ public: void place(const voxel_pos& vpos, const chunk_pos& cpos, VoxelStorage& voxels) const; }; -#endif /* SHARED_FEATURE_HH */ +#endif // SHARED_FEATURE_HH diff --git a/src/game/shared/game.hh b/src/game/shared/game.hh index 59c5327..a9d79e4 100644 --- a/src/game/shared/game.hh +++ b/src/game/shared/game.hh @@ -8,4 +8,4 @@ void init(int argc, char** argv); void deinit(void); } // namespace shared_game -#endif /* SHARED_GAME */ +#endif // SHARED_GAME diff --git a/src/game/shared/game_items.hh b/src/game/shared/game_items.hh index 4e4eb81..2b5c19a 100644 --- a/src/game/shared/game_items.hh +++ b/src/game/shared/game_items.hh @@ -23,4 +23,4 @@ namespace game_items void populate(void); } // namespace game_items -#endif /* SHARED_GAME_ITEMS */ +#endif // SHARED_GAME_ITEMS diff --git a/src/game/shared/game_voxels.hh b/src/game/shared/game_voxels.hh index 1b344bf..e96e141 100644 --- a/src/game/shared/game_voxels.hh +++ b/src/game/shared/game_voxels.hh @@ -25,4 +25,4 @@ namespace game_voxels void populate(void); } // namespace game_voxels -#endif /* SHARED_GAME_VOXELS */ +#endif // SHARED_GAME_VOXELS diff --git a/src/game/shared/globals.hh b/src/game/shared/globals.hh index 216d341..bfaf6cb 100644 --- a/src/game/shared/globals.hh +++ b/src/game/shared/globals.hh @@ -20,4 +20,4 @@ namespace globals extern std::uint64_t curtime; } // namespace globals -#endif /* SHARED_GLOBALS_HH */ +#endif // SHARED_GLOBALS_HH diff --git a/src/game/shared/gravity.hh b/src/game/shared/gravity.hh index 53f51b7..19387c1 100644 --- a/src/game/shared/gravity.hh +++ b/src/game/shared/gravity.hh @@ -9,4 +9,4 @@ public: static void fixed_update(Dimension* dimension); }; -#endif /* SHARED_GRAVITY_HH */ +#endif // SHARED_GRAVITY_HH diff --git a/src/game/shared/grounded.hh b/src/game/shared/grounded.hh index 869cca0..a30b1dc 100644 --- a/src/game/shared/grounded.hh +++ b/src/game/shared/grounded.hh @@ -10,4 +10,4 @@ struct GroundedComponent final { voxel_surface surface; }; -#endif /* SHARED_GROUNDED */ +#endif // SHARED_GROUNDED diff --git a/src/game/shared/head.hh b/src/game/shared/head.hh index 57dd445..41304ef 100644 --- a/src/game/shared/head.hh +++ b/src/game/shared/head.hh @@ -11,4 +11,4 @@ struct HeadComponent { struct HeadComponentIntr final : public HeadComponent {}; struct HeadComponentPrev final : public HeadComponent {}; -#endif /* SHARED_HEAD_HH */ +#endif // SHARED_HEAD_HH diff --git a/src/game/shared/item_registry.hh b/src/game/shared/item_registry.hh index 17cff9f..8847e97 100644 --- a/src/game/shared/item_registry.hh +++ b/src/game/shared/item_registry.hh @@ -59,4 +59,4 @@ namespace item_registry std::uint64_t calcualte_checksum(void); } // namespace item_registry -#endif /* SHARED_ITEM_REGISTRY_HH */ +#endif // SHARED_ITEM_REGISTRY_HH diff --git a/src/game/shared/pch.hh b/src/game/shared/pch.hh index 1776f9b..8607dd3 100644 --- a/src/game/shared/pch.hh +++ b/src/game/shared/pch.hh @@ -22,4 +22,4 @@ #include <spdlog/sinks/basic_file_sink.h> #include <spdlog/sinks/stdout_color_sinks.h> -#endif /* SHARED_PCH_HH */ +#endif // SHARED_PCH_HH diff --git a/src/game/shared/player.hh b/src/game/shared/player.hh index a01b4f2..4f862d3 100644 --- a/src/game/shared/player.hh +++ b/src/game/shared/player.hh @@ -4,4 +4,4 @@ struct PlayerComponent final {}; -#endif /* SHARED_PLAYER_HH */ +#endif // SHARED_PLAYER_HH diff --git a/src/game/shared/protocol.hh b/src/game/shared/protocol.hh index 5b25628..fa9f1e1 100644 --- a/src/game/shared/protocol.hh +++ b/src/game/shared/protocol.hh @@ -210,4 +210,4 @@ struct protocol::DimensionInfo final : public protocol::Base<0x0012> { float gravity; }; -#endif /* SHARED_PROTOCOL_HH */ +#endif // SHARED_PROTOCOL_HH diff --git a/src/game/shared/ray_dda.hh b/src/game/shared/ray_dda.hh index 91eb462..504fa7b 100644 --- a/src/game/shared/ray_dda.hh +++ b/src/game/shared/ray_dda.hh @@ -34,4 +34,4 @@ public: voxel_pos vpos; }; -#endif /* SHARED_RAY_DDA */ +#endif // SHARED_RAY_DDA diff --git a/src/game/shared/splash.hh b/src/game/shared/splash.hh index 9510d35..f494a5b 100644 --- a/src/game/shared/splash.hh +++ b/src/game/shared/splash.hh @@ -9,4 +9,4 @@ void init_server(void); const char* get(void); } // namespace splash -#endif /* SHARED_SPLASH_HH */ +#endif // SHARED_SPLASH_HH diff --git a/src/game/shared/stasis.hh b/src/game/shared/stasis.hh index bd06d4e..2907cfb 100644 --- a/src/game/shared/stasis.hh +++ b/src/game/shared/stasis.hh @@ -11,4 +11,4 @@ public: static void fixed_update(Dimension* dimension); }; -#endif /* SHARED_STASIS_HH */ +#endif // SHARED_STASIS_HH diff --git a/src/game/shared/threading.hh b/src/game/shared/threading.hh index bce4811..474d616 100644 --- a/src/game/shared/threading.hh +++ b/src/game/shared/threading.hh @@ -47,4 +47,4 @@ inline void threading::submit(AT&&... args) threading::detail::submit_new(new T(args...)); } -#endif /* SHARED_THREADING_HH */ +#endif // SHARED_THREADING_HH diff --git a/src/game/shared/transform.hh b/src/game/shared/transform.hh index f9c5f47..1a1be0e 100644 --- a/src/game/shared/transform.hh +++ b/src/game/shared/transform.hh @@ -22,4 +22,4 @@ public: struct TransformComponentIntr final : public TransformComponent {}; struct TransformComponentPrev final : public TransformComponent {}; -#endif /* SHARED_TRANSFORM_HH */ +#endif // SHARED_TRANSFORM_HH diff --git a/src/game/shared/types.hh b/src/game/shared/types.hh index 85fbd19..161ea46 100644 --- a/src/game/shared/types.hh +++ b/src/game/shared/types.hh @@ -41,4 +41,4 @@ struct std::hash<chunk_pos_xz> final { } }; -#endif /* SHARED_TYPES_HH */ +#endif // SHARED_TYPES_HH diff --git a/src/game/shared/velocity.hh b/src/game/shared/velocity.hh index 45a2858..17da420 100644 --- a/src/game/shared/velocity.hh +++ b/src/game/shared/velocity.hh @@ -14,4 +14,4 @@ public: static void fixed_update(Dimension* dimension); }; -#endif /* SHARED_VELOCITY_HH */ +#endif // SHARED_VELOCITY_HH diff --git a/src/game/shared/voxel_registry.hh b/src/game/shared/voxel_registry.hh index 5f7963f..e0b2100 100644 --- a/src/game/shared/voxel_registry.hh +++ b/src/game/shared/voxel_registry.hh @@ -141,4 +141,4 @@ namespace voxel_registry std::uint64_t calcualte_checksum(void); } // namespace voxel_registry -#endif /* SHARED_VOXEL_REGISTRY_HH */ +#endif // SHARED_VOXEL_REGISTRY_HH diff --git a/src/game/shared/voxel_storage.hh b/src/game/shared/voxel_storage.hh index a31cf3e..702bdac 100644 --- a/src/game/shared/voxel_storage.hh +++ b/src/game/shared/voxel_storage.hh @@ -15,4 +15,4 @@ public: void deserialize(ReadBuffer& buffer); }; -#endif /* SHARED_VOXEL_STORAGE_HH */ +#endif // SHARED_VOXEL_STORAGE_HH |
