gedeng/test/test-app/main.cpp

16 lines
214 B
C++

#include <Gedeng.h>
class TestApp : public Gedeng::Application {
public:
TestApp() = default;
~TestApp() = default;
};
int main() {
TestApp *app = new TestApp();
app->run();
delete app;
}