1#pragma once
2
3class PlayerHackKeeper;
4
5class IUsePlayerHack {
6public:
7 virtual PlayerHackKeeper* getPlayerHackKeeper() const = 0;
8};
9