diff --git a/src/game/client/prediction/entity.h b/src/game/client/prediction/entity.h index d50e805ed..ad23c4c9a 100644 --- a/src/game/client/prediction/entity.h +++ b/src/game/client/prediction/entity.h @@ -48,6 +48,7 @@ public: class CCollision *Collision() { return GameWorld()->Collision(); } CEntity *TypeNext() { return m_pNextTypeEntity; } CEntity *TypePrev() { return m_pPrevTypeEntity; } + const vec2 &GetPos() const { return m_Pos; } float GetProximityRadius() const { return m_ProximityRadius; } void Destroy() { delete this; }