mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 19:29:00 +00:00
28 lines
313 B
C++
28 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;
|
|
};
|