From 6cd00aacfa22fed6a54a9b812f6b069ad16feec0 Mon Sep 17 00:00:00 2001 From: untodesu Date: Sun, 29 Jun 2025 22:24:42 +0500 Subject: Move game sources into src subdirectory --- src/game/client/skybox.hh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/game/client/skybox.hh (limited to 'src/game/client/skybox.hh') diff --git a/src/game/client/skybox.hh b/src/game/client/skybox.hh new file mode 100644 index 0000000..a3853f0 --- /dev/null +++ b/src/game/client/skybox.hh @@ -0,0 +1,15 @@ +#ifndef CLIENT_SKYBOX_HH +#define CLIENT_SKYBOX_HH 1 +#pragma once + +namespace skybox +{ +extern glm::fvec3 fog_color; +} // namespace skybox + +namespace skybox +{ +void init(void); +} // namespace skybox + +#endif /* CLIENT_SKYBOX_HH */ -- cgit