PhanesEngine/Samples/DevPlayground/DevPlayground.cpp
2024-05-13 23:11:29 +02:00

11 lines
249 B
C++

#include <Phanes.h>
using namespace Phanes::Core::Math;
class DevPlayground : public Phanes::Core::Application::PhanesGame {};
Phanes::Core::Application::PhanesGame* Phanes::Core::Application::CreatePhanesGame()
{
return new DevPlayground();
}