Rename crate folders to remove raidillon prefix

This commit is contained in:
reo 2025-08-17 21:14:59 +03:00
parent 176ea52ab0
commit 3458662cfc
29 changed files with 31 additions and 28 deletions

8
platform/src/platform.rs Normal file
View file

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