New crate: raidillon_app, refactor game/main.rs to use the new crate

This commit is contained in:
reo 2025-11-16 19:32:56 +03:00
parent 82f3b27732
commit 47c3b2b111
12 changed files with 140 additions and 96 deletions

16
app/Cargo.toml Normal file
View file

@ -0,0 +1,16 @@
[package]
name = "raidillon_app"
version = "0.1.0"
edition = "2024"
[dependencies]
raidillon_engine = { path = "../engine" }
raidillon_platform = { path = "../platform" }
raidillon_assets = { path = "../asset" }
raidillon_ecs = { path = "../ecs" }
raidillon_physics = { path = "../physics" }
raidillon_glium = { path = "../glium_platform", optional = true }
raidillon_core = { path = "../core" }
[features]
glium = ["raidillon_glium"]