css-linux-cheat/include/cstrike/Classes/IHandleEntity.h

8 lines
195 B
C
Raw Permalink Normal View History

#pragma once
class IHandleEntity {
public:
virtual ~IHandleEntity() {};
virtual void SetRefEHandle(const CBaseHandle& Handle) = 0;
virtual const CBaseHandle& GetRefEHandle() const = 0;
};