14 lines
232 B
C++
14 lines
232 B
C++
#define GEDENG_MAIN
|
|
#include <Gedeng.h>
|
|
|
|
class TestApp : public Gedeng::Application {
|
|
public:
|
|
TestApp() = default;
|
|
|
|
~TestApp() = default;
|
|
};
|
|
|
|
Gedeng::Application *Gedeng::create_application() {
|
|
return new TestApp();
|
|
}
|