PhanesEngine/Samples/DevPlayground/DevPlayground.cpp
2024-05-15 23:06:11 +02:00

13 lines
240 B
C++

#define P_USE_NAMESPACE_ALIAS
#include <Phanes.h>
class DevPlayground : public PApp::PhanesProject
{
using PhanesProject::PhanesProject;
};
PApp::PhanesProject* PApp::CreatePhanesGame()
{
return new DevPlayground("DevPlayground");
}