PhanesEngine/DevPlayground/DevPlayground.cpp
2025-02-17 22:31:17 +01:00

14 lines
244 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");
}