Giant refactor for a better event-driven architecture

This commit is contained in:
reo 2025-07-21 23:52:32 +03:00
parent 341d531db3
commit 88a21040cd
22 changed files with 936 additions and 67 deletions

View file

@ -3,9 +3,12 @@ pub mod model;
pub mod gltf_loader;
pub mod render;
pub mod ecs_renderer;
pub mod render_system;
pub mod window;
pub use camera::Camera;
pub use render::GliumRenderer;
pub use ecs_renderer::ECSRenderer;
pub use render_system::RenderSystem;
pub use raidillon_core::ModelId;
pub use window::{DisplayHandle, init_window as init_render_window};