1
0
Fork 0
mirror of https://github.com/halpz/re3.git synced 2025-01-07 20:15:27 +00:00
re3/src/User.h

29 lines
313 B
C
Raw Normal View History

#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;
};