gedeng/test/test-app/main.cpp

16 lines
303 B
C++
Raw Normal View History

2021-03-20 16:55:43 +01:00
#include "Gedeng/Logger.h"
#define GEDENG_MAIN
#include <Gedeng.h>
class TestApp : public Gedeng::Application {
public:
TestApp() = default;
~TestApp() = default;
};
Gedeng::Application *Gedeng::create_application() {
2021-03-20 16:55:43 +01:00
GG_CLIENT_INFO("Creating Application");
return new TestApp();
}