diff options
Diffstat (limited to 'game/environment.h')
-rw-r--r-- | game/environment.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/game/environment.h b/game/environment.h index 62eedb8..a6f3036 100644 --- a/game/environment.h +++ b/game/environment.h @@ -1,5 +1,6 @@ #pragma once +#include "config/types.h" #include "worldobject.h" class SceneRenderer; @@ -10,6 +11,7 @@ public: Environment(); void tick(TickDuration elapsed) override; void render(const SceneRenderer &, const SceneProvider &) const; + static Direction2D getSunPos(const Direction2D position, const time_t time); private: time_t worldTime; |