rustecs
rustecs copied to clipboard
Entity Component System for Rust
Hi everyone, this is both a heads up regarding the current status of Rustecs, as well as a request for feedback regarding its future. ## Current Status I think you...
Component names are derived from the type. I propose a way to specify a component name with any generic type. This would lessen pollution (Position and Velocity components can, for...
Since enums are now namespaced, the additional pub mod around them can be removed.
Preliminary support for systems has been added: https://github.com/hannobraun/rustecs/blob/master/rustecs/tests/systems.rs I think this goes in the right direction, but isn't really usable yet. There are still a few things missing before the...