16 lines
303 B
C++
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();
|
|
}
|