summaryrefslogtreecommitdiffstats
path: root/src/game/shared/world/voxel_registry.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/shared/world/voxel_registry.hh')
-rw-r--r--src/game/shared/world/voxel_registry.hh9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/game/shared/world/voxel_registry.hh b/src/game/shared/world/voxel_registry.hh
index 5dbaf50..4e60808 100644
--- a/src/game/shared/world/voxel_registry.hh
+++ b/src/game/shared/world/voxel_registry.hh
@@ -1,3 +1,10 @@
+// SPDX-License-Identifier: BSD-2-Clause
+// Copyright (c) 2025 Kirill Dmitrievich
+// File: voxel_registry.hh
+// Description: Registry for all the voxels in the game
+
+#ifndef SHARED_WORLD_VOXEL_REGISTRY_HH
+#define SHARED_WORLD_VOXEL_REGISTRY_HH
#pragma once
#include "shared/world/voxel.hh"
@@ -24,3 +31,5 @@ namespace voxel_registry
{
std::uint64_t get_checksum(void);
} // namespace voxel_registry
+
+#endif