blob: 24d5e815b48ec7e80084e1ac3c6c906fa6e521cb (
plain)
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
36
37
38
39
|
#pragma once
#include <cstdint>
struct Vector2;
struct Vector3;
struct ImVec4;
class World;
class Unit;
class MainScreen;
class Player;
class PlayerArray;
class Engine
{
static Engine* instance;
uint64_t base;
uint32_t playerColors[8] = { 0xff0000ff, 0xffff0000,0xff00ff00,0xffffff00,0xff00ffff,0xffff00ff,0xff7f7f7f,0xffffb400 };
//void __fastcall UnitMoveTo_7FF64AAE6F40(int64_t* that, int one, int64_t zero, int fourty, int a5, int a6)
Engine();
public:
static Engine* Get();
World* GetWorld();
MainScreen* GetMainScreen();
int GetTotalPlayers();
PlayerArray* GetPlayerArray();
Vector2 worldToScreen(Vector3 position);
Vector2 worldToScreen(Unit* unit);
uint32_t GetPlayerColor(int colorIndex);
ImVec4 GetPlayerColorImGUI(int colorIndex);
Player* GetPlayerByName(char* playername);
Player* GetLocalPlayer();
};
|