use crate::app::App; pub trait AppHandler { fn update(&mut self, _app: &mut App) {} fn render(&mut self, app: &mut App); }