mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 17:48:59 +00:00
29 lines
313 B
C
29 lines
313 B
C
|
#pragma once
|
||
|
|
||
|
class COnscreenTimer
|
||
|
{
|
||
|
public:
|
||
|
void ProcessForDisplay(void);
|
||
|
};
|
||
|
|
||
|
class CPlaceName
|
||
|
{
|
||
|
};
|
||
|
|
||
|
class CCurrentVehicle
|
||
|
{
|
||
|
};
|
||
|
|
||
|
class CPager
|
||
|
{
|
||
|
};
|
||
|
|
||
|
class CUserDisplay
|
||
|
{
|
||
|
public:
|
||
|
static CPlaceName &PlaceName;
|
||
|
static COnscreenTimer &OnscnTimer;
|
||
|
static CPager &Pager;
|
||
|
static CCurrentVehicle &CurrentVehicle;
|
||
|
};
|