tiger_lib/parse/mod.rs
//! Parsers for the various kinds of game script.
pub mod cob;
#[cfg(any(feature = "ck3", feature = "imperator"))]
pub mod csv;
#[cfg(feature = "vic3")]
pub mod json;
pub mod localization;
pub mod pdxfile;
/// Global state for parser that need it. Can be passed down to the parser.
#[derive(Clone, Default, Debug)]
pub struct ParserMemory {
pub pdxfile: pdxfile::memory::PdxfileMemory,
}