mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 20:59:00 +00:00
13 lines
No EOL
345 B
C++
13 lines
No EOL
345 B
C++
#pragma once
|
|
|
|
class CGameLogic
|
|
{
|
|
public:
|
|
static void InitAtStartOfGame();
|
|
static void PassTime(uint32 time);
|
|
static void SortOutStreamingAndMemory(const CVector &pos);
|
|
static void Update();
|
|
static void RestorePlayerStuffDuringResurrection(class CPlayerPed *pPlayerPed, CVector pos, float angle);
|
|
|
|
static uint8 ActivePlayers;
|
|
}; |