light/Sandbox/src/SandboxApp.cpp

20 lines
270 B
C++
Raw Normal View History

2021-05-20 10:21:08 +04:30
#include <LightEngine.h>
class Sandbox : public Light::Application
{
2021-05-21 10:55:39 +04:30
public:
Sandbox()
{
LT_CLIENT_TRACE("Sandbox::Sandbox");
}
~Sandbox()
{
LT_CLIENT_TRACE("Sandbox::~Sandbox");
}
2021-05-20 10:21:08 +04:30
};
Light::Application* Light::CreateApplication()
{
return new Sandbox();
}