Started work on build system
This commit is contained in:
@@ -5,6 +5,7 @@ class CBasePlayer: public CBaseEntity
|
||||
public:
|
||||
virtual void Precache ( void ) override;
|
||||
virtual void Spawn( void ) override;
|
||||
virtual void ReadParameter( const char *szName, const char *szValue ) override;
|
||||
virtual void Destroy( void ) override;
|
||||
virtual void Think( float fDelta ) override;
|
||||
};
|
||||
@@ -19,6 +20,10 @@ void CBasePlayer::Spawn()
|
||||
{
|
||||
|
||||
};
|
||||
void CBasePlayer::ReadParameter( const char *szName, const char *szValue )
|
||||
{
|
||||
CBaseEntity::ReadParameter(szName, szValue);
|
||||
}
|
||||
|
||||
void CBasePlayer::Destroy()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user