This commit is contained in:
IlyaShurupov 2024-05-03 15:09:26 +03:00
parent 86a41c1876
commit e2072d257f
14 changed files with 594 additions and 341 deletions

View file

@ -6,9 +6,9 @@
using namespace tp;
using namespace obj;
class ExampleGUI : public Application {
class SimpleGUI : public Application {
public:
ExampleGUI() { gui.cd(objects_api::create<DictObject>(), "root"); }
SimpleGUI() { gui.cd(objects_api::create<DictObject>(), "root"); }
void processFrame(EventHandler* eventHandler) override {}
@ -28,7 +28,7 @@ int main() {
if (module.initialize()) {
{
ExampleGUI gui;
SimpleGUI gui;
gui.run();
}
module.deinitialize();