1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! # Engine Module
//!
//! Internal ECS engine implementation.
//!
//! This module contains all core ECS building blocks such as:
//! - Archetypes
//! - Entity management
//! - Component storage
//! - Query execution
//! - Scheduling and systems
//!
//! Public API exposure is controlled by `lib.rs`.
pub mod activation;
pub mod archetype;
pub mod borrow;
pub mod boundary;
pub mod channel_allocator;
pub mod commands;
pub mod component;
pub mod dot_export;
pub mod entity;
pub mod error;
pub mod manager;
pub mod plan_display;
pub mod query;
pub mod random;
pub mod reduce;
pub mod scheduler;
pub mod storage;
pub mod systems;
pub mod types;
pub mod worker_stage;
pub mod workers;
#[cfg(feature = "gpu")]
pub mod dirty;