Fix spdlog include.

This commit is contained in:
THoehne
2024-09-19 15:41:33 +02:00
parent 2cd51e29ac
commit 44e16fc8fb
197 changed files with 33037 additions and 185 deletions

View File

@@ -0,0 +1,15 @@
#define P_USE_NAMESPACE_ALIAS
#include "Phanes.h"
class DevPlayground : public PApp::PhanesProject
{
using PhanesProject::PhanesProject;
};
PApp::PhanesProject* PApp::CreatePhanesGame()
{
return new DevPlayground("DevPlayground");
}