CheatMenuSA/src/CheatMenu.h

35 lines
561 B
C
Raw Normal View History

2020-12-02 16:19:16 -05:00
/*
Required:
DirectX 9 SDK
2020-12-02 16:19:16 -05:00
Plugin SDK
Visual Studio 2019 (v142)
Windows SDK
2020-12-02 16:19:16 -05:00
*/
#pragma once
#include "Animation.h"
#include "Game.h"
#include "Hook.h"
#include "Menu.h"
#include "Ped.h"
#include "Player.h"
#include "Teleport.h"
#include "Vehicle.h"
#include "Visual.h"
#include "Weapon.h"
class CheatMenu : Hook, Animation, Game, Menu, Ped, Player, Teleport, Vehicle, Visual, Weapon
{
private:
2021-02-25 17:45:41 -05:00
static CallbackTable header;
2021-02-24 16:54:45 -05:00
static void ApplyStyle();
2021-02-25 17:45:41 -05:00
static void DrawWindow();
static void ProcessEvent();
2020-12-02 16:19:16 -05:00
public:
CheatMenu();
2021-02-25 17:45:41 -05:00
~CheatMenu();
2020-12-02 16:19:16 -05:00
};