Files
GTASource/game/script/commands_network.h
expvintl 419f2e4752 init
2025-02-23 17:40:52 +08:00

21 lines
613 B
C++

#ifndef _COMMANDS_NETWORK_H_
#define _COMMANDS_NETWORK_H_
namespace network_commands
{
void SetupScriptCommands();
void ResetTrackingVariables();
bool HasValidLocalGamerIndex(OUTPUT_ONLY(const char* fn));
// Expose some stuff to RAG for debugging
#if __BANK
bool CommandTriggerPlayerCrcHackerCheck(int PlayerIndex, int systemToCheck, int specificSubsystem);
bool CommandTriggerTuningCrcHackerCheck(int PlayerIndex, const char* tuningGroup, const char* tuningItem);
bool CommandTriggerFileCrcHackerCheck(int PlayerIndex, const char* filePath);
bool CommandShouldWarnOfSimpleModCheck();
#endif
}
#endif