Remove imgui from the entire project

This commit is contained in:
reo 2025-11-16 18:34:48 +03:00
parent 306774c15b
commit 13aefcc86f
12 changed files with 16 additions and 125 deletions

View file

@ -1,4 +1,3 @@
use crate::DebugUIBuffer;
use crate::scene::Scene;
pub trait EngineTrait {
@ -10,6 +9,4 @@ pub trait EngineTrait {
fn handle_event(&mut self, platform_context: Self::PlatformCtx);
fn current_scene_mut(&mut self) -> &mut Scene;
fn current_scene(&self) -> &Scene;
fn get_debug_ui_buffer(&self) -> &DebugUIBuffer;
fn reset_debug_ui_buffer(&mut self);
}