tiger_bin_shared/lib.rs
1mod auto;
2mod gamedir;
3mod tiger;
4mod update;
5
6/// String constants associated with the game being verified.
7#[allow(missing_copy_implementations)]
8#[derive(Debug)]
9pub struct GameConsts {
10 /// Full name
11 pub name: &'static str,
12 /// Shortened name
13 pub name_short: &'static str,
14 /// Latest supported version
15 pub version: &'static str,
16 /// steam ID
17 pub app_id: u32,
18 /// A file that should be present if this is the correct game directory
19 pub signature_file: &'static str,
20 /// The directory under the Paradox Interactive directory for local files
21 pub paradox_dir: &'static str,
22}
23
24pub use auto::run as auto;
25pub use tiger::run as tiger;