Changed build files to meson
This commit is contained in:
parent
9d4436cc00
commit
0460ae1a50
17 changed files with 170 additions and 127 deletions
19
Sandbox/src/private/SandboxApp.cpp
Normal file
19
Sandbox/src/private/SandboxApp.cpp
Normal file
|
@ -0,0 +1,19 @@
|
|||
#include <Flux.h>
|
||||
|
||||
class Sandbox : public Flux::Application
|
||||
{
|
||||
public:
|
||||
Sandbox()
|
||||
{
|
||||
|
||||
}
|
||||
~Sandbox()
|
||||
{
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
Flux::Application* Flux::CreateApplication()
|
||||
{
|
||||
return new Sandbox();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue