summaryrefslogtreecommitdiffstats
path: root/src/game/shared/entity/grounded.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/shared/entity/grounded.hh')
-rw-r--r--src/game/shared/entity/grounded.hh9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/game/shared/entity/grounded.hh b/src/game/shared/entity/grounded.hh
index 7307e79..38367ec 100644
--- a/src/game/shared/entity/grounded.hh
+++ b/src/game/shared/entity/grounded.hh
@@ -1,3 +1,10 @@
+// SPDX-License-Identifier: BSD-2-Clause
+// Copyright (c) 2025 Kirill Dmitrievich
+// File: grounded.hh
+// Description: Flag components for entites that rest on the ground
+
+#ifndef SHARED_ENTITY_GROUNDED_HH
+#define SHARED_ENTITY_GROUNDED_HH
#pragma once
#include "shared/world/voxel.hh"
@@ -7,3 +14,5 @@
struct Grounded final {
VoxelMaterial surface;
};
+
+#endif