This commit is contained in:
Cutieguwu
2025-03-30 22:16:10 -04:00
parent fc00146b47
commit 65e202d78e
14 changed files with 349 additions and 102 deletions

View File

@@ -1,13 +1,23 @@
#![allow(deprecated)]
mod action;
mod error;
mod event;
mod file;
mod game;
mod period;
mod play;
mod score;
mod terrain;
#[allow(unused)]
pub const MIN_VER: semver::Version = semver::Version::new(0, 3, 0);
pub use action::*;
pub use event::Event;
pub use file::LogFile;
pub use game::{Game, GameRecord};
pub use period::*;
pub use play::*;
pub use score::ScoreChange;
pub use terrain::TerrainState;