saints_mile/lib.rs
1//! Saint's Mile — A frontier JRPG for the adults who loved those games first.
2//!
3//! Library crate exposing all game systems for integration tests.
4
5#[macro_use]
6pub mod types;
7pub mod scene;
8pub mod combat;
9pub mod state;
10pub mod pressure;
11pub mod content;
12pub mod dev;
13pub mod ui;