CheatMenuSA/src/custom/topdowncam_sa.h

23 lines
394 B
C
Raw Normal View History

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 class IFeature;
2022-08-14 19:59:14 -04:00
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;