Initial late commit

This commit is contained in:
Erris
2026-01-12 16:57:00 +01:00
commit 9c41714b96
181 changed files with 32168 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#include <sandbox.hpp>
Sandbox::Sandbox()
{
PushLayer(new SandboxLayer());
}
Sandbox::~Sandbox()
{
}
OpenEngine::Application* OpenEngine::CreateApplication()
{
OE_INFO("Sandbox Starting...");
return new Sandbox();
}