modif appbuilder

This commit is contained in:
Jérôme Bousquié
2026-07-08 12:29:18 +02:00
parent 82ea16d118
commit 724b658896
14 changed files with 205 additions and 2447 deletions
+6
View File
@@ -0,0 +1,6 @@
use crate::app::App;
pub trait AppHandler {
fn update(&mut self, _app: &mut App) {}
fn render(&mut self, app: &mut App);
}