This repository has been archived on 2025-07-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
miller/gamelog/src/lib.rs
2025-04-07 11:27:24 -04:00

22 lines
337 B
Rust

mod action;
mod error;
mod event;
mod file;
mod game;
mod period;
#[allow(deprecated)]
mod play;
mod terrain;
#[allow(unused)]
pub const MIN_VER: semver::Version = semver::Version::new(0, 6, 0);
// I'm lazy.
pub use action::*;
pub use event::*;
pub use file::*;
pub use game::*;
pub use period::*;
pub use play::*;
pub use terrain::*;