1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#pragma once
#include "Feature.h"
struct Vector2;
struct Vector3;
class ESP : public Feature
{
bool gaiaESP = true;
bool goldESP = true;
bool stoneESP = true;
bool trebuchetESP = true;
bool siegeImpactLocation = true;
bool playerUnitEsp[8] = { true,true,true,true,true,true,true,true };
bool playerUnitDestinationEsp[8] = { false,false,false,false,false,false,false,false };
bool playerUnitNameEsp[8] = { false,false,false,false,false,false,false,false };
//bool playerBuildingEsp[8] = { false,true,true,true,true,true,true,true };
//bool playerBuildingNameEsp[8] = { false,true,true,true,true,true,true,true };
float colors[8][3];
static uint32_t colors_hex[8];
//Callbacks
void LoadConfig() override;
void SaveConfig() override;
void OnUnitIteration(Unit* unit, Player* player, int playerIndex) override;
void OnMenuPlayerTreenode(Player* player, int playerIndex) override;
void OnNeutralUnit(Unit* unit) override;
void OnMenuMainWindow() override;
void DrawBox(Unit* unit, int32_t color, bool drawName);
void DrawBox(Vector3 position, Vector2 edgeSize, int32_t color);
void DrawCircle(Unit* unit, int radius, int32_t color, int smoothness , int thickness, bool drawName);
};
|