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