tiger_lib/parse/mod.rs
1//! Parsers for the various kinds of game script.
2
3pub mod cob;
4#[cfg(any(feature = "ck3", feature = "imperator", feature = "hoi4"))]
5pub mod csv;
6pub mod ignore;
7pub mod json;
8pub mod localization;
9pub mod pdxfile;
10
11/// Global state for parser that need it. Can be passed down to the parser.
12#[derive(Clone, Default, Debug)]
13pub struct ParserMemory {
14 pub pdxfile: pdxfile::memory::PdxfileMemory,
15}