2022-08-14 19:59:14 -04:00
|
|
|
#pragma once
|
|
|
|
#include "interface/icheat.hpp"
|
|
|
|
|
|
|
|
/*
|
|
|
|
TopDown for SA
|
|
|
|
Activates/Disactivates cheats randomly
|
|
|
|
*/
|
|
|
|
class TopDownCamera : public ICheat<TopDownCamera>
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
friend ICheat;
|
|
|
|
TopDownCamera();
|
|
|
|
TopDownCamera(const TopDownCamera&);
|
|
|
|
|
|
|
|
public:
|
|
|
|
int m_nZoom = 40;
|
|
|
|
|
|
|
|
// Process cheat each frame
|
2022-08-17 21:12:21 -04:00
|
|
|
void DrawPages();
|
2022-08-14 19:59:14 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
extern TopDownCamera& TopDownCam;
|