Files
Seele/src/Engine/System/LightGather.cpp
T

19 lines
258 B
C++
Raw Normal View History

2023-10-26 18:37:29 +02:00
#include "LightGather.h"
using namespace Seele;
using namespace Seele::System;
LightGather::LightGather(PScene scene)
: SystemBase(scene)
, lightEnv(scene->getLightEnvironment())
{
}
LightGather::~LightGather()
{
}
void LightGather::update()
{
}