lotus_engine 0.3.2

Lotus is a game engine with the main focus of being easy-to-use and straight forward on developing 2D games.
Documentation
/// The World and its features on the ECS architecture.
pub mod world;

/// The Archetypes that acts as clusters of data in our World.
pub mod archetype;

/// Commands that affect the World.
pub mod command;

/// The Component and its features on the ECS architecture.
pub mod component;

/// The Resource and its features on the ECS architecture.
pub mod resource;

/// The Entity and its features on the ECS architecture.
pub mod entity;

/// The Query and its features on the ECS architecture.
pub mod query;