Removed some unneeded stuff from class.

This commit is contained in:
Johnny Bergström
2004-11-15 00:20:28 +00:00
parent add716276b
commit 08fea0eea1
2 changed files with 0 additions and 23 deletions

View File

@ -10,8 +10,6 @@ class CCstrikePlayer
public:
CCstrikePlayer();
void Initialize();
bool GetModelled();
bool SetModelled(bool modelledIn);
const char* GetModel();
@ -20,13 +18,10 @@ public:
bool GetInspectModel();
void SetInspectModel(bool inspectModelIn);
bool GetOnline();
void SetOnline(bool onlineIn);
private:
bool inspectModel;
bool modelled;
bool online;
char model[32];
};