This commit is contained in:
Oscar
2025-07-22 22:06:34 +03:00
parent d3c189f949
commit f892794557
780 changed files with 436498 additions and 170 deletions

View File

@@ -1,5 +1,10 @@
#include "players.h"
#include "../offsets/offsets.h"
//@not used anymore
//std::vector<CCSPlayerController> Players::controllers;
//std::vector<C_CSPlayerPawn> Players::pawns;
#include <unordered_set>
std::unordered_set<uintptr_t> pawns;
std::unordered_set<uintptr_t> controllers;
void ClearAll() {
pawns.clear();
controllers.clear();
}

View File

@@ -5,4 +5,10 @@
#include <cstdint>
#include <vector>
//@not used anymore
#include <unordered_set>
//@not used anymore
extern std::unordered_set<uintptr_t> pawns;
extern std::unordered_set<uintptr_t> controllers;
void ClearAll();