Initial Commit

This commit is contained in:
Jordon Brooks 2023-02-28 20:25:38 +00:00
parent 32c5bafa07
commit 5e77883bd2
11 changed files with 215 additions and 32 deletions

View file

@ -0,0 +1,19 @@
#include <Flux.h>
class Sandbox : public Flux::Application
{
public:
Sandbox()
{
}
~Sandbox()
{
}
};
Flux::Application* Flux::CreateApplication()
{
return new Sandbox();
}