PhanesEngine/DevPlayground/DevPlayground.cpp
2024-04-24 22:11:03 +02:00

12 lines
220 B
C++

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