mod auto;
mod gamedir;
mod tiger;
mod update;
mod version;
#[allow(missing_copy_implementations)]
#[derive(Debug)]
pub struct GameConsts {
pub name: &'static str,
pub name_short: &'static str,
pub version: &'static str,
pub app_id: u32,
pub signature_file: &'static str,
pub paradox_dir: &'static str,
}
pub use auto::run as auto;
pub use tiger::run as tiger;