feat(world): add skeleton for DayNight system

This commit is contained in:
VDm 2025-07-16 01:21:26 +04:00
parent 4418c789f9
commit 35e44e0976
14 changed files with 197 additions and 18 deletions

View file

@ -3,6 +3,7 @@
#include "gx/Transform.hpp"
#include "gx/Draw.hpp"
#include "gx/Shader.hpp"
#include "world/CWorld.hpp"
#include <bc/Memory.hpp>
#include <tempest/Matrix.hpp>
@ -62,4 +63,5 @@ void CGWorldFrame::OnWorldUpdate() {
}
void CGWorldFrame::OnWorldRender() {
CWorld::Render();
}