mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
* Added icon to launcher.exe * Launcher.exe gets remnamed to Run R5 Reloaded.exe in launcher release compilation configuration. * Extended argument buffer for starting the game in launcher.exe. * Added exception printing if in the custom ConVars an invalid value gets passed.
22 lines
732 B
C
22 lines
732 B
C
#pragma once
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Launch and inject specified dll based on launchmode
|
|
//-----------------------------------------------------------------------------
|
|
enum class LAUNCHMODE : int
|
|
{
|
|
LM_NULL,
|
|
LM_DEBUG, // Debug DLL
|
|
LM_GAME, // Release DLL
|
|
LM_DEDI // Dedi DLL
|
|
};
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// [TODO] Launch with FCVAR_DEVELOPMENTONLY and FCVAR_CHEATS disabled/enabled
|
|
//-----------------------------------------------------------------------------
|
|
enum class LAUNCHSTATE : int
|
|
{
|
|
LS_NOCHEATS, // Disabled cheats
|
|
LS_CHEATS, // Enable cheats
|
|
LS_DEBUG // Enable debug
|
|
}; |