tiger-lib 1.17.0

Library used by the tools ck3-tiger, vic3-tiger, and imperator-tiger. This library holds the bulk of the code for them. It can be built either for ck3-tiger with the feature ck3, or for vic3-tiger with the feature vic3, or for imperator-tiger with the feature imperator, but not both at the same time.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Types and functions related to `.gui` file processing

pub use self::block::{GuiBlock, GuiBlockFrom};
pub use self::builtins::BuiltinWidget;
pub use self::categories::GuiCategories;
pub use self::properties::{GuiValidation, PropertyContainer, WidgetProperty};
#[cfg(any(feature = "ck3", feature = "vic3"))]
pub use self::validate::validate_datatype_field;

mod block;
mod builtins;
mod categories;
mod properties;
mod validate;