RD-1: Added an inital port of d_main.c/d_main.h. Added some other basic files

This commit is contained in:
Jim
2026-05-20 19:15:27 +01:00
parent 21aedec4d4
commit f0b04bbcc2
11 changed files with 934 additions and 1 deletions

44
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,44 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug Executable",
"cargo": {
"args": [
"build",
"--bin=RustyDoom"
],
"filter": {
"name": "RustyDoom",
"kind": "bin"
}
},
"args": [
"./WADS/DOOM.WAD", "-dev", "@configs.txt", "-nomonsters", "-file", "test.WAD", "test2.WAD", "-skill", "3"
],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Release Executable",
"cargo": {
"args": [
"build",
"--release",
"--bin=RustyDoom"
],
"filter": {
"name": "RustyDoom",
"kind": "bin"
}
},
"args": [
"./WADS/DOOM.WAD", "arg2", "-fast"
],
"cwd": "${workspaceFolder}"
}
]
}