RD-3: Implemented M_LoadDefaults. Also add d_strings, giving supprot for English default strings
This commit was merged in pull request #3.
This commit is contained in:
20
src/d_strings/mod.rs
Normal file
20
src/d_strings/mod.rs
Normal file
@@ -0,0 +1,20 @@
|
||||
#[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;
|
||||
|
||||
Reference in New Issue
Block a user