You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
378 B
9 lines
378 B
8 years ago
|
class CCodplay : public CHalfLifeMultiplay
|
||
|
{
|
||
|
public:
|
||
|
CCodplay();
|
||
|
virtual const char *GetGameDescription( void ) { return "Cawadooty"; } // this is the game name that gets seen in the server browser
|
||
|
virtual BOOL IsCOD( void );
|
||
|
virtual void PlayerSpawn( CBasePlayer *pPlayer );
|
||
|
virtual void PlayerKilled( CBasePlayer *pVictim, entvars_t *pKiller, entvars_t *pInflictor );
|
||
|
};
|