issun 0.10.0

A mini game engine for logic-focused games - Build games in ISSUN (一寸) of time
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Engine modules for ISSUN

pub mod game_loop;
pub mod headless_runner;
pub mod input;
pub mod mod_bridge_system;
pub mod rng;
pub mod runner;

pub use headless_runner::{ChannelHeadlessRunner, HeadlessRunner};
pub use input::InputMapper;
pub use mod_bridge_system::ModBridgeSystem;
pub use rng::GameRng;
pub use runner::GameRunner;