Add logging (spdlog) and abstract the api.

This commit is contained in:
scorpioblood
2024-05-15 23:06:11 +02:00
parent 08c2d7b9d1
commit cd02a6014b
37 changed files with 8588 additions and 53 deletions

View File

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