wip: Changes of the week

- Move engine to a different crate
- Add engine trait
- Refactor the rest of the codebase to work with these changes
- Add debug ui buffer, use it to finish imgui support
This commit is contained in:
reo 2025-09-07 17:00:04 +03:00
parent 3fd5b09a94
commit 15122b8ebd
20 changed files with 344 additions and 117 deletions

View file

@ -1,9 +1,9 @@
use raidillon_assets::ModelManager;
use raidillon_core::Engine;
use raidillon_core::engine::EngineTrait;
use crate::PlatformContext;
pub trait Platform {
pub trait Platform<E: EngineTrait> {
/// Initialize platform.
fn initialize(engine: Engine, title: String, width: u32, height: u32) -> Self;
fn initialize(engine: E, title: String, width: u32, height: u32) -> Self;
fn run(self);
}