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
See Implementation
Starts application and goes into raw alt terminal mode
Application runs in this order:
All those methods are overridable and intended to be used to create custom app logic