summaryrefslogtreecommitdiffstats
path: root/src/control/GameLogic.h
blob: 43e244a38ccc1c7c2d275d1449336bf71b868002 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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;
};