21 lines
377 B
Rust
21 lines
377 B
Rust
#[cfg(feature = "french")]
|
|
mod d_french;
|
|
|
|
#[cfg(not(feature = "french"))]
|
|
mod d_english;
|
|
|
|
#[cfg(feature = "french")]
|
|
pub use d_french::*;
|
|
|
|
#[cfg(not(feature = "french"))]
|
|
pub use d_english::*;
|
|
|
|
pub const SAVEGAMENAME: &'static str = "doomsav";
|
|
|
|
pub const DEVMPAS: &'static str = "devmaps";
|
|
|
|
pub const DEVDATA: &'static str = "devdata";
|
|
|
|
pub const NUM_QUITMESSAGES: i32 = 22;
|
|
|