PhanesEngine/Samples/DevPlayground/DevPlayground.cpp
2024-05-15 18:02:01 +02:00

10 lines
179 B
C++

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