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:
Jim
2026-05-27 19:17:29 +01:00
parent fd9bbaee2d
commit dd7573a807
12 changed files with 1203 additions and 6 deletions

20
src/d_strings/mod.rs Normal file
View 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;