summaryrefslogtreecommitdiffstats
path: root/src/game/client/entity/camera.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client/entity/camera.hh')
-rw-r--r--src/game/client/entity/camera.hh9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/game/client/entity/camera.hh b/src/game/client/entity/camera.hh
index 526bc91..133fedc 100644
--- a/src/game/client/entity/camera.hh
+++ b/src/game/client/entity/camera.hh
@@ -1,3 +1,10 @@
+// SPDX-License-Identifier: BSD-2-Clause
+// Copyright (c) 2025 Kirill Dmitrievich
+// File: camera.hh
+// Description: Client view matrix calculations
+
+#ifndef CLIENT_ENTITY_CAMERA_HH
+#define CLIENT_ENTITY_CAMERA_HH
#pragma once
#include "shared/types.hh"
@@ -29,3 +36,5 @@ namespace camera
void init(void);
void update(void);
} // namespace camera
+
+#endif