mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Adds spdlog library instead for clearer output. Adds precompiled header for slightly faster compilation. Updated print text with clearer details. Renamed to "r5reloaded.exe" instead to match files in game directory
23 lines
756 B
C
23 lines
756 B
C
#pragma once
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Launch and inject specified dll based on launchmode
|
|
//-----------------------------------------------------------------------------
|
|
enum class LAUNCHMODE : int
|
|
{
|
|
LM_NULL,
|
|
LM_DEBUG, // Debug DLL
|
|
LM_RELEASE, // Release DLL
|
|
LM_DEDI // Dedicated DLL
|
|
};
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// [TODO] Launch with FCVAR_DEVELOPMENTONLY and FCVAR_CHEATS disabled/enabled
|
|
//-----------------------------------------------------------------------------
|
|
enum class LAUNCHSTATE : int
|
|
{
|
|
LS_NULL,
|
|
LS_NOCHEATS, // Disabled cheats
|
|
LS_CHEATS, // Enable cheats
|
|
LS_DEBUG // Enable debug
|
|
}; |