19 lines
No EOL
186 B
C++
19 lines
No EOL
186 B
C++
#include <Flux.h>
|
|
|
|
class Sandbox : public Flux::Application
|
|
{
|
|
public:
|
|
Sandbox()
|
|
{
|
|
|
|
}
|
|
~Sandbox()
|
|
{
|
|
|
|
}
|
|
};
|
|
|
|
Flux::Application* Flux::CreateApplication()
|
|
{
|
|
return new Sandbox();
|
|
} |