mirror of
https://gitlab.com/shinovon/re3-symbian.git
synced 2026-05-23 01:57:21 +03:00
Initial commit
This commit is contained in:
commit
77cdaaf97e
827 changed files with 418745 additions and 0 deletions
41
src/core/User.h
Normal file
41
src/core/User.h
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
#pragma once
|
||||
|
||||
#include "Pager.h"
|
||||
#include "OnscreenTimer.h"
|
||||
|
||||
class CZone;
|
||||
class CVehicle;
|
||||
|
||||
class CPlaceName
|
||||
{
|
||||
CZone *m_pZone;
|
||||
CZone *m_pZone2;
|
||||
int16 m_nAdditionalTimer;
|
||||
public:
|
||||
CPlaceName();
|
||||
void Init();
|
||||
void Process();
|
||||
void Display();
|
||||
};
|
||||
|
||||
class CCurrentVehicle
|
||||
{
|
||||
CVehicle *m_pCurrentVehicle;
|
||||
public:
|
||||
CCurrentVehicle();
|
||||
void Init();
|
||||
void Process();
|
||||
void Display();
|
||||
};
|
||||
|
||||
class CUserDisplay
|
||||
{
|
||||
public:
|
||||
static CPlaceName PlaceName;
|
||||
static COnscreenTimer OnscnTimer;
|
||||
static CPager Pager;
|
||||
static CCurrentVehicle CurrentVehicle;
|
||||
|
||||
static void Init();
|
||||
static void Process();
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue