PowerPoints

This commit is contained in:
Sergeanur
2020-01-20 18:53:21 +02:00
parent 045c638067
commit d52452e69f
3 changed files with 84 additions and 1 deletions

26
src/control/PowerPoints.h Normal file
View File

@ -0,0 +1,26 @@
#pragma once
enum
{
POWERPOINT_NONE = 0,
POWERPOINT_HEALTH,
POWERPOINT_HIDEOUT_INDUSTRIAL,
POWERPOINT_HIDEOUT_COMMERCIAL,
POWERPOINT_HIDEOUT_SUBURBAN
};
class CPowerPoint
{
public:
void Update();
};
class CPowerPoints
{
public:
static void Init();
static void Update();
static void GenerateNewOne(float, float, float, float, float, float, uint8);
static void Save(uint8**, uint32*);
static void Load(uint8*, uint32);
};