#include "Gedeng/Logger.h" #define GEDENG_MAIN #include class TestApp : public Gedeng::Application { public: TestApp() = default; ~TestApp() = default; }; Gedeng::Application *Gedeng::create_application() { GG_CLIENT_INFO("Creating Application"); return new TestApp(); }