moirai-for-games 0.1.0

A small deterministic no_std ECS for constrained and headless games
Documentation
1
2
3
4
5
6
7
//! Deterministic fixed-point helpers for host-side simulation math.
//!
//! [`Q16`] provides Q16.16 arithmetic suitable for reproducible ECS-side calculations.

mod q16;

pub use q16::{Q16Error, Q16};