Refactoring graphics

This commit is contained in:
Dynamitos
2023-10-26 18:37:29 +02:00
parent 28e5c9ff01
commit 1ca861459c
113 changed files with 3131 additions and 3221 deletions
+18
View File
@@ -0,0 +1,18 @@
#pragma once
#include "SystemBase.h"
namespace Seele
{
namespace System
{
class LightGather : public SystemBase
{
public:
LightGather(PScene scene);
virtual ~LightGather();
virtual void update() override;
private:
PLightEnvironment lightEnv;
};
}
}