-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlive_stats.h
More file actions
26 lines (21 loc) · 837 Bytes
/
Copy pathlive_stats.h
File metadata and controls
26 lines (21 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef _LIVE_STATS
#define _LIVE_STATS
#include "live_anticheat.h"
enum eGameModes
{
GAMEMODE_PUBLIC_MATCH = 0x0,
GAMEMODE_PRIVATE_MATCH = 0x1,
GAMEMODE_LOCAL_SPLITSCREEN = 0x2,
GAMEMODE_WAGER_MATCH = 0x3,
GAMEMODE_BASIC_TRAINING = 0x4,
GAMEMODE_THEATER = 0x5,
GAMEMODE_LEAGUE_MATCH = 0x6,
GAMEMODE_RTS = 0x7,
GAMEMODE_MAX = 0x8,
INVALID_GAMEMODE = 0x9
};
typedef bool (__cdecl * LiveStats_Probation_GiveProbation_t)(ControllerIndex_t controllerIndex, eGameModes gamemode, float time);
extern LiveStats_Probation_GiveProbation_t LiveStats_Probation_GiveProbation;
void LiveStats_Probation_GiveProbationSaveStub(ControllerIndex_t controllerIndex, eGameModes gamemode, float time);
void LiveStats_Probation_GiveProbationHook(ControllerIndex_t controllerIndex, eGameModes gamemode, float time);
#endif//_LIVE_STATS