├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── actions │ └── build │ │ └── action.yml └── workflows │ ├── editorconfig-checker.yml │ ├── nightly-build.yml │ ├── pr-nightly-comment.yml │ └── release-build.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.example.json ├── extensions.json ├── launch.json ├── settings.example.json └── tasks.json ├── .vsconfig ├── LICENSE.md ├── README.md ├── Spawner.props ├── Spawner.sln ├── Spawner.user ├── Spawner.vcxproj ├── cspell.json ├── scripts ├── build.bat ├── build_debug.bat ├── build_debug_cncnet_yr.bat ├── build_debug_cncnet_yr_hardened.bat ├── build_debug_hardened.bat ├── build_devbuild.bat ├── build_devbuild_cncnet_yr.bat ├── build_devbuild_cncnet_yr_hardened.bat ├── build_devbuild_hardened.bat ├── build_release.bat ├── build_release_cncnet_yr.bat ├── build_release_cncnet_yr_hardened.bat ├── build_release_hardened.bat ├── clean.bat ├── configure_vscode_cpp.bat ├── ec-windows-386.exe ├── editorconfig-checker.bat ├── run_msbuild.bat ├── run_vsdevcmd.bat └── vswhere.exe └── src ├── CnCNetYR ├── AppIcon.cpp ├── Misc.cpp ├── Ra2Mode.cpp └── Ra2Mode.h ├── Ext ├── Event │ ├── Body.cpp │ └── Body.h └── INIClass │ ├── Body.cpp │ └── Body.h ├── Main.Config.cpp ├── Main.Config.h ├── Main.Ext.cpp ├── Main.Hook.cpp ├── Main.cpp ├── Main.h ├── Misc ├── Bugfixes.Blowfish.cpp ├── Bugfixes.ClampTacticalPos.cpp ├── Bugfixes.CommonCrashes.cpp ├── Bugfixes.ExceptionCatch.cpp ├── Bugfixes.IsoMapPack5Limit.cpp ├── Bugfixes.Perf.cpp ├── Bugfixes.cpp ├── CopyProtection.cpp ├── DisableEdgeScrolling.cpp ├── InGameChat.cpp ├── NoCD.cpp ├── Observers.Visibility.cpp ├── Observers.cpp ├── QuickExit.cpp ├── SavedGamesInSubdir.cpp ├── SkipScoreScreen.cpp └── VideoMode.cpp ├── Spawner ├── CustomMixes.cpp ├── NetHack.cpp ├── NetHack.h ├── ProtocolZero.Hook.cpp ├── ProtocolZero.LatencyLevel.cpp ├── ProtocolZero.LatencyLevel.h ├── ProtocolZero.cpp ├── ProtocolZero.h ├── QuickMatch.cpp ├── RandomMap.cpp ├── Spawner.Config.cpp ├── Spawner.Config.h ├── Spawner.Hook.cpp ├── Spawner.cpp ├── Spawner.h └── Statistics.cpp ├── UI ├── Dialogs.cpp ├── Dialogs.h ├── Hooks.cpp └── MultiplayerGameOptionsDialog.rc ├── Utilities ├── Debug.cpp ├── Debug.h ├── DumperTypes.h ├── Macro.h ├── Patch.cpp └── Patch.h ├── version.h └── version.rc /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/actions/build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.github/actions/build/action.yml -------------------------------------------------------------------------------- /.github/workflows/editorconfig-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.github/workflows/editorconfig-checker.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.github/workflows/nightly-build.yml -------------------------------------------------------------------------------- /.github/workflows/pr-nightly-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.github/workflows/pr-nightly-comment.yml -------------------------------------------------------------------------------- /.github/workflows/release-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.github/workflows/release-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.vscode/c_cpp_properties.example.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.vscode/settings.example.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/.vsconfig -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/README.md -------------------------------------------------------------------------------- /Spawner.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/Spawner.props -------------------------------------------------------------------------------- /Spawner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/Spawner.sln -------------------------------------------------------------------------------- /Spawner.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/Spawner.user -------------------------------------------------------------------------------- /Spawner.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/Spawner.vcxproj -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/cspell.json -------------------------------------------------------------------------------- /scripts/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/build.bat -------------------------------------------------------------------------------- /scripts/build_debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/build_debug.bat -------------------------------------------------------------------------------- /scripts/build_debug_cncnet_yr.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/build_debug_cncnet_yr.bat -------------------------------------------------------------------------------- /scripts/build_debug_cncnet_yr_hardened.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/build_debug_cncnet_yr_hardened.bat -------------------------------------------------------------------------------- /scripts/build_debug_hardened.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/build_debug_hardened.bat -------------------------------------------------------------------------------- /scripts/build_devbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/build_devbuild.bat -------------------------------------------------------------------------------- /scripts/build_devbuild_cncnet_yr.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/build_devbuild_cncnet_yr.bat -------------------------------------------------------------------------------- /scripts/build_devbuild_cncnet_yr_hardened.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/build_devbuild_cncnet_yr_hardened.bat -------------------------------------------------------------------------------- /scripts/build_devbuild_hardened.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/build_devbuild_hardened.bat -------------------------------------------------------------------------------- /scripts/build_release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/build_release.bat -------------------------------------------------------------------------------- /scripts/build_release_cncnet_yr.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/build_release_cncnet_yr.bat -------------------------------------------------------------------------------- /scripts/build_release_cncnet_yr_hardened.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/build_release_cncnet_yr_hardened.bat -------------------------------------------------------------------------------- /scripts/build_release_hardened.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/build_release_hardened.bat -------------------------------------------------------------------------------- /scripts/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/clean.bat -------------------------------------------------------------------------------- /scripts/configure_vscode_cpp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/configure_vscode_cpp.bat -------------------------------------------------------------------------------- /scripts/ec-windows-386.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/ec-windows-386.exe -------------------------------------------------------------------------------- /scripts/editorconfig-checker.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/editorconfig-checker.bat -------------------------------------------------------------------------------- /scripts/run_msbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/run_msbuild.bat -------------------------------------------------------------------------------- /scripts/run_vsdevcmd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/run_vsdevcmd.bat -------------------------------------------------------------------------------- /scripts/vswhere.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/scripts/vswhere.exe -------------------------------------------------------------------------------- /src/CnCNetYR/AppIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/CnCNetYR/AppIcon.cpp -------------------------------------------------------------------------------- /src/CnCNetYR/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/CnCNetYR/Misc.cpp -------------------------------------------------------------------------------- /src/CnCNetYR/Ra2Mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/CnCNetYR/Ra2Mode.cpp -------------------------------------------------------------------------------- /src/CnCNetYR/Ra2Mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/CnCNetYR/Ra2Mode.h -------------------------------------------------------------------------------- /src/Ext/Event/Body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Ext/Event/Body.cpp -------------------------------------------------------------------------------- /src/Ext/Event/Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Ext/Event/Body.h -------------------------------------------------------------------------------- /src/Ext/INIClass/Body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Ext/INIClass/Body.cpp -------------------------------------------------------------------------------- /src/Ext/INIClass/Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Ext/INIClass/Body.h -------------------------------------------------------------------------------- /src/Main.Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Main.Config.cpp -------------------------------------------------------------------------------- /src/Main.Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Main.Config.h -------------------------------------------------------------------------------- /src/Main.Ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Main.Ext.cpp -------------------------------------------------------------------------------- /src/Main.Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Main.Hook.cpp -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Main.h -------------------------------------------------------------------------------- /src/Misc/Bugfixes.Blowfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/Bugfixes.Blowfish.cpp -------------------------------------------------------------------------------- /src/Misc/Bugfixes.ClampTacticalPos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/Bugfixes.ClampTacticalPos.cpp -------------------------------------------------------------------------------- /src/Misc/Bugfixes.CommonCrashes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/Bugfixes.CommonCrashes.cpp -------------------------------------------------------------------------------- /src/Misc/Bugfixes.ExceptionCatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/Bugfixes.ExceptionCatch.cpp -------------------------------------------------------------------------------- /src/Misc/Bugfixes.IsoMapPack5Limit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/Bugfixes.IsoMapPack5Limit.cpp -------------------------------------------------------------------------------- /src/Misc/Bugfixes.Perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/Bugfixes.Perf.cpp -------------------------------------------------------------------------------- /src/Misc/Bugfixes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/Bugfixes.cpp -------------------------------------------------------------------------------- /src/Misc/CopyProtection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/CopyProtection.cpp -------------------------------------------------------------------------------- /src/Misc/DisableEdgeScrolling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/DisableEdgeScrolling.cpp -------------------------------------------------------------------------------- /src/Misc/InGameChat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/InGameChat.cpp -------------------------------------------------------------------------------- /src/Misc/NoCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/NoCD.cpp -------------------------------------------------------------------------------- /src/Misc/Observers.Visibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/Observers.Visibility.cpp -------------------------------------------------------------------------------- /src/Misc/Observers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/Observers.cpp -------------------------------------------------------------------------------- /src/Misc/QuickExit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/QuickExit.cpp -------------------------------------------------------------------------------- /src/Misc/SavedGamesInSubdir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/SavedGamesInSubdir.cpp -------------------------------------------------------------------------------- /src/Misc/SkipScoreScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/SkipScoreScreen.cpp -------------------------------------------------------------------------------- /src/Misc/VideoMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Misc/VideoMode.cpp -------------------------------------------------------------------------------- /src/Spawner/CustomMixes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/CustomMixes.cpp -------------------------------------------------------------------------------- /src/Spawner/NetHack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/NetHack.cpp -------------------------------------------------------------------------------- /src/Spawner/NetHack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/NetHack.h -------------------------------------------------------------------------------- /src/Spawner/ProtocolZero.Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/ProtocolZero.Hook.cpp -------------------------------------------------------------------------------- /src/Spawner/ProtocolZero.LatencyLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/ProtocolZero.LatencyLevel.cpp -------------------------------------------------------------------------------- /src/Spawner/ProtocolZero.LatencyLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/ProtocolZero.LatencyLevel.h -------------------------------------------------------------------------------- /src/Spawner/ProtocolZero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/ProtocolZero.cpp -------------------------------------------------------------------------------- /src/Spawner/ProtocolZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/ProtocolZero.h -------------------------------------------------------------------------------- /src/Spawner/QuickMatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/QuickMatch.cpp -------------------------------------------------------------------------------- /src/Spawner/RandomMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/RandomMap.cpp -------------------------------------------------------------------------------- /src/Spawner/Spawner.Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/Spawner.Config.cpp -------------------------------------------------------------------------------- /src/Spawner/Spawner.Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/Spawner.Config.h -------------------------------------------------------------------------------- /src/Spawner/Spawner.Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/Spawner.Hook.cpp -------------------------------------------------------------------------------- /src/Spawner/Spawner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/Spawner.cpp -------------------------------------------------------------------------------- /src/Spawner/Spawner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/Spawner.h -------------------------------------------------------------------------------- /src/Spawner/Statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Spawner/Statistics.cpp -------------------------------------------------------------------------------- /src/UI/Dialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/UI/Dialogs.cpp -------------------------------------------------------------------------------- /src/UI/Dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/UI/Dialogs.h -------------------------------------------------------------------------------- /src/UI/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/UI/Hooks.cpp -------------------------------------------------------------------------------- /src/UI/MultiplayerGameOptionsDialog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/UI/MultiplayerGameOptionsDialog.rc -------------------------------------------------------------------------------- /src/Utilities/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Utilities/Debug.cpp -------------------------------------------------------------------------------- /src/Utilities/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Utilities/Debug.h -------------------------------------------------------------------------------- /src/Utilities/DumperTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Utilities/DumperTypes.h -------------------------------------------------------------------------------- /src/Utilities/Macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Utilities/Macro.h -------------------------------------------------------------------------------- /src/Utilities/Patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Utilities/Patch.cpp -------------------------------------------------------------------------------- /src/Utilities/Patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/Utilities/Patch.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/version.h -------------------------------------------------------------------------------- /src/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnCNet/yrpp-spawner/HEAD/src/version.rc --------------------------------------------------------------------------------