latticeon 0.1.0

A math and ECS library focused on easy academic reproduction of animation, physics simulation, and AI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Latticeon engine: ECS and future modules (render, input, etc.).
//!
//! Use the ECS via [`ecs`] or the [prelude](ecs::prelude):
//!
//! ```ignore
//! use latticeon::ecs::prelude::*;
//! use latticeon::ecs::Universe;
//! ```

pub mod ecs;

/// Re-exports for convenience when using the full engine.
pub use ecs::{Commands, Component, Entity, Universe, World};
pub use ecs::prelude as ecs_prelude;