This commit is contained in:
Jordon Brooks 2025-05-06 16:59:40 +01:00
parent 0460ae1a50
commit 1dca4a91d9
Signed by: jordon
GPG key ID: DBD9758CD53E786A
19 changed files with 333 additions and 156 deletions

View file

@ -1,19 +1,9 @@
#include <Flux.h>
#include "Flux.h"
class Sandbox : public Flux::Application
int main (int argc, char** argv)
{
public:
Sandbox()
{
}
~Sandbox()
{
}
};
Flux::Application* Flux::CreateApplication()
{
return new Sandbox();
Flux::FluxEngine engine;
engine.Start();
return 0;
}