sky_ecs 0.1.0

Chunk-based ECS core for Sky
Documentation
1
2
3
4
5
6
7
8
9
10
//! Chunk-based ECS core for Sky.
//!
//! The crate owns entities, component storage, typed queries, resources,
//! commands, scheduling, and the lightweight plugin installation protocol.

pub mod ecs;
pub mod plugin;

pub use ecs::*;
pub use plugin::{Plugin, PluginError, PluginRegistry, PluginResult};