tiger-tables 1.18.0

Library used by Tiger Validator. It holds tables that may be useful for other projects, so that they can be imported without pulling in all of Tiger.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::datatype::{Args, Datatype, Hoi4Datatype};

use Datatype::*;
use Hoi4Datatype::*;

pub const GLOBAL_PROMOTES_HOI4: &[(&str, Args, Datatype)] =
    include!("include/data_global_promotes.rs");
// Hoi4 does not have these
pub const GLOBAL_FUNCTIONS_HOI4: &[(&str, Args, Datatype)] = &[];
pub const PROMOTES_HOI4: &[(&str, Datatype, Args, Datatype)] = include!("include/data_promotes.rs");
pub const FUNCTIONS_HOI4: &[(&str, Datatype, Args, Datatype)] =
    include!("include/data_functions.rs");