tiger_lib/parse/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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,
}