Confirmed hostage follow offset for WON, tidied up csplayerclass

This commit is contained in:
Johnny Bergström
2004-03-08 09:18:06 +00:00
parent 913b72451d
commit da149e4580
4 changed files with 10 additions and 38 deletions

View File

@ -10,22 +10,17 @@ class CCstrikePlayer
public:
CCstrikePlayer();
/*bool GetOnline();
bool SetOnline(bool onlineIn);*/
bool GetModelled();
bool SetModelled(bool modelledIn);
//float GetTime();
//void SetTime(float timeIn);
const char* GetModel();
const char* SetModel(const char* modelIn);
void SetModel(const char* modelIn);
bool GetInspectModel();
void SetInspectModel(bool inspectModelIn);
private:
bool online, inspectModel;
bool inspectModel;
bool modelled;
char model[32];
//float time;
};
#endif // !defined(INCLUDED_CCSTRIKEPLAYER)