Files
Seele/src/Engine/System/LightGather.cpp
T
2023-10-26 18:37:29 +02:00

19 lines
258 B
C++

#include "LightGather.h"
using namespace Seele;
using namespace Seele::System;
LightGather::LightGather(PScene scene)
: SystemBase(scene)
, lightEnv(scene->getLightEnvironment())
{
}
LightGather::~LightGather()
{
}
void LightGather::update()
{
}