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/world/voxel_anims.hh | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/game/client/world/voxel_anims.hh') diff --git a/src/game/client/world/voxel_anims.hh b/src/game/client/world/voxel_anims.hh index 63a4fc1..76df53d 100644 --- a/src/game/client/world/voxel_anims.hh +++ b/src/game/client/world/voxel_anims.hh @@ -1,3 +1,10 @@ +// SPDX-License-Identifier: BSD-2-Clause +// Copyright (c) 2025 Kirill Dmitrievich +// File: voxel_anims.hh +// Description: Voxel texture animations framerate control + +#ifndef CLIENT_WORLD_VOXEL_ANIMS_HH +#define CLIENT_WORLD_VOXEL_ANIMS_HH #pragma once namespace voxel_anims @@ -11,3 +18,5 @@ namespace voxel_anims void init(void); void update(void); } // namespace voxel_anims + +#endif -- cgit