light/Sandbox/src/SandboxLayer.h

9 lines
143 B
C
Raw Normal View History

2021-05-26 18:39:40 +04:30
#include <LightEngine.h>
2021-05-27 10:41:32 +04:30
class SandboxLayer : public Light::Layer
2021-05-26 18:39:40 +04:30
{
public:
2021-05-27 10:41:32 +04:30
SandboxLayer(const std::string& name): Light::Layer(name) {}
2021-05-26 18:39:40 +04:30
};