- 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
12 lines
266 B
TOML
12 lines
266 B
TOML
[package]
|
|
name = "raidillon_engine"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
raidillon_assets = { path = "../asset" }
|
|
raidillon_core = { path = "../core" }
|
|
raidillon_platform = { path = "../platform" }
|
|
winit = "0.30.12"
|
|
hecs = "0.10.5"
|
|
indexmap = "2.10.0"
|