From ce63d90bd7bdc48f529e98357594324d36954ef3 Mon Sep 17 00:00:00 2001 From: NoMonkey Date: Sun, 23 Jan 2005 22:40:30 +0000 Subject: [PATCH] This was SVN commit r1796. --- source/simulation/Entity.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/simulation/Entity.h b/source/simulation/Entity.h index 3dc574fef2..e5786a715a 100755 --- a/source/simulation/Entity.h +++ b/source/simulation/Entity.h @@ -151,10 +151,10 @@ public: void Tick(); // Store the player associated with this entity - void SetPlayer(CPlayer *pPlayer); + inline void SetPlayer(CPlayer *pPlayer); // Retrieve the player associated with this entity - CPlayer* GetPlayer() { return m_player; } + inline CPlayer* GetPlayer() { return m_player; } // Process damage void Damage( CDamageType& damage, CEntity* inflictor = NULL );