RD-4: Implemented V_Init(). Also moved some constants to be more in-line with the original source code

This commit was merged in pull request #4.
This commit is contained in:
Jim
2026-05-27 20:10:24 +01:00
parent dd7573a807
commit 0a979dd8e0
6 changed files with 91 additions and 19 deletions

10
src/doomtype/mod.rs Normal file
View File

@@ -0,0 +1,10 @@
const MAXCHAR: i8 = i8::MAX;
const MAXSHORT: i16 = i16::MAX;
const MAXINT: i32 = i32::MAX;
const MAXLONG: i32 = i32::MAX;
// Minimum values
const MINCHAR: i8 = i8::MIN;
const MINSHORT: i16 = i16::MIN;
const MININT: i32 = i32::MIN;
const MINLONG: i32 = i32::MIN;