1
0
mirror of https://github.com/td512/re3.git synced 2026-01-31 18:41:49 +00:00
Files
td512.re3/src/control/GameLogic.h
2020-04-09 20:50:24 +02:00

13 lines
333 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;
};