moecs 0.1.0

Micro ECS engine. A small and lightweight ECS engine for Rust projects.
Documentation
1
2
3
4
5
6
/// Used internally to differentiate between various configurable execution modes.
#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) enum ExecutionMode {
    Sequential,
    Parallel,
}