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