moltrun 1.7.2

High-performance game engine library with AI capabilities, built on wgpu for modern 3D graphics and physics simulation
Documentation
1
2
3
4
5
6
7
8
9
pub mod entity;
pub mod component;
pub mod system;
pub mod input;

pub use entity::{Entity, EntityId};
pub use component::Component;
pub use system::{System, SystemId, SystemContext, SystemError};
pub use input::InputState;