implemented some higher level functions; added lots of stubs; switched top and bottom in CRect

This commit is contained in:
aap
2019-05-30 21:24:47 +02:00
parent d434c88606
commit 188aab4196
65 changed files with 791 additions and 169 deletions

28
src/User.h Normal file
View File

@@ -0,0 +1,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;
};