sky_ecs 0.1.3

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

#![deny(unsafe_op_in_unsafe_fn)]

extern crate self as sky_ecs;

pub mod ecs;
pub mod plugin;

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