wuestite_ecs 0.1.0

2D game engine written in rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod component;
pub mod entity;
pub mod event;
pub mod system;
pub mod world;

pub use component::Component;
pub use entity::Entity;
pub use event::Event;
pub use event::EventDispatcher;
pub use system::System;
pub use world::World;
pub use wuestite_ecs_macros::Component;
pub use wuestite_ecs_macros::Event;
pub use wuestite_ecs_macros::System;