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/resource/texture_gui.hh | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/game/client/resource/texture_gui.hh') diff --git a/src/game/client/resource/texture_gui.hh b/src/game/client/resource/texture_gui.hh index 2d42c83..2487a77 100644 --- a/src/game/client/resource/texture_gui.hh +++ b/src/game/client/resource/texture_gui.hh @@ -1,3 +1,10 @@ +// SPDX-License-Identifier: BSD-2-Clause +// Copyright (c) 2025 Kirill Dmitrievich +// File: texture_gui.hh +// Description: GUI texture resource + +#ifndef CLIENT_RESOURCE_TEXTURE_GUI_HH +#define CLIENT_RESOURCE_TEXTURE_GUI_HH #pragma once constexpr static unsigned int TEXTURE_GUI_LOAD_CLAMP_S = 0x0001; @@ -13,3 +20,5 @@ struct TextureGUI final { ImTextureID handle; glm::ivec2 size; }; + +#endif -- cgit