gedeng/test/test-app/main.cpp
2021-03-20 16:55:43 +01:00

16 lines
303 B
C++

#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() {
GG_CLIENT_INFO("Creating Application");
return new TestApp();
}