App.run

Starts application and goes into raw alt terminal mode

Application runs in this order:

app.create();
elements.create();
while (isRunning) {
    elements.input();
    app.input();

    elements.update();
    app.update();

    elements.render();
    app.render();
}
elements.destroy();
app.destroy();

All those methods are overridable and intended to be used to create custom app logic

class App
final
void
run
()

Meta