aixxe da0e8efd27 Add client entity class headers.
* Remove 'isreplay' from player_info_s.

Signed-off-by: aixxe <me@aixxe.net>
2016-12-19 21:05:41 +00:00

8 lines
290 B
C++

#pragma once
class IClientEntity: public IClientUnknown, public IClientRenderable, public IClientNetworkable, public IClientThinkable {
public:
virtual void Release(void) = 0;
virtual const Vector& GetAbsOrigin(void) const = 0;
virtual const QAngle& GetAbsAngles(void) const = 0;
};