Implement a basic engine with separate modules

This commit is contained in:
reo 2025-06-29 23:17:53 +03:00
parent 0135974d08
commit 95070f854c
20 changed files with 1253 additions and 117 deletions

View file

@ -4,6 +4,15 @@ version = "0.1.0"
edition = "2021"
[dependencies]
glium = "0.36.0"
glutin = "0.32.3"
image = "0.25.6"
anyhow = "1.0.98"
glam = "0.30.4"
# glium already re-exports glutin/winit, but we enable the helper features explicitly
glium = { version = "0.36.0", features = ["glutin_backend", "simple_window_builder"] }
gltf = { version = "1.4.1", features = ["import"] }
# explicit glutin for raw types (same semver as gliums internal one)
glutin = { version = "0.32.3", default-features = false }
hecs = "0.10.5"
image = "0.25.6"