This repository has been archived on 2024-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
cathook/include/reclasses/C_BasePlayer.hpp
2017-12-02 17:47:47 +03:00

9 lines
193 B
C++

class C_BasePlayer : public C_BaseEntity
{
public:
inline static CTFPlayerShared &shared_(IClientEntity *self)
{
return *((CTFPlayerShared *) (unsigned(self) + 6092));
}
};