summaryrefslogtreecommitdiffstats
path: root/src/User.h
blob: 9717fae0aab5f9f7fee5da69450ff39c8bc90478 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#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;
};