This commit is contained in:
LunarAkai 2025-08-04 01:47:13 +02:00
commit ca57bce787
7 changed files with 177 additions and 484 deletions

View file

@ -5,8 +5,8 @@ version.workspace = true
authors.workspace = true
[dependencies]
bevy_ecs = "0.16.1"
moonhare_ecs = { path = "../moonhare_ecs" }
moonhare_event = { path = "../moonhare_event" }
moonhare_game = { path = "../moonhare_game" }
moonhare_graphics = { path = "../moonhare_graphics" }

View file

@ -1,6 +1,4 @@
// Writing an ecs from scratch seems hard, might do it in the future though
pub use bevy_ecs as ecs;
pub use moonhare_ecs as ecs;
pub use moonhare_event as event;
pub use moonhare_game as game;
pub use moonhare_graphics as graphics;