- 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
17 lines
430 B
TOML
17 lines
430 B
TOML
[package]
|
|
name = "raidillon_game"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
default = ["glium"]
|
|
glium = ["raidillon_glium"]
|
|
|
|
[dependencies]
|
|
raidillon_core = { path = "../core" }
|
|
raidillon_platform = { path = "../platform" }
|
|
raidillon_assets = { path = "../asset" }
|
|
raidillon_ecs = { path = "../ecs" }
|
|
raidillon_engine = { path = "../engine" }
|
|
raidillon_glium = { path = "../glium_platform", optional = true }
|
|
glam = "0.30.5"
|