summaryrefslogtreecommitdiffstats
path: root/src/game/shared/world/feature.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/shared/world/feature.hh')
-rw-r--r--src/game/shared/world/feature.hh9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/game/shared/world/feature.hh b/src/game/shared/world/feature.hh
index b80869d..820ddc7 100644
--- a/src/game/shared/world/feature.hh
+++ b/src/game/shared/world/feature.hh
@@ -1,3 +1,10 @@
+// SPDX-License-Identifier: BSD-2-Clause
+// Copyright (c) 2025 Kirill Dmitrievich
+// File: feature.hh
+// Description: A world generation feature
+
+#ifndef SHARED_WORLD_FEATURE_HH
+#define SHARED_WORLD_FEATURE_HH
#pragma once
#include "shared/types.hh"
@@ -17,3 +24,5 @@ public:
void place(const voxel_pos& vpos, const chunk_pos& cpos, Chunk& chunk) const;
void place(const voxel_pos& vpos, const chunk_pos& cpos, VoxelStorage& voxels) const;
};
+
+#endif