16 lines
214 B
C++
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;
|
|
} |