added mesh rendering
This commit is contained in:
32
game/server/baseplayer.cpp
Normal file
32
game/server/baseplayer.cpp
Normal file
@@ -0,0 +1,32 @@
|
||||
#include "baseentity.h"
|
||||
|
||||
class CBasePlayer: public CBaseEntity
|
||||
{
|
||||
public:
|
||||
virtual void Precache ( void ) override;
|
||||
virtual void Spawn( void ) override;
|
||||
virtual void Destroy( void ) override;
|
||||
virtual void Think( float fDelta ) override;
|
||||
};
|
||||
|
||||
|
||||
void CBasePlayer::Precache()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void CBasePlayer::Spawn()
|
||||
{
|
||||
|
||||
};
|
||||
|
||||
void CBasePlayer::Destroy()
|
||||
{
|
||||
|
||||
}
|
||||
void CBasePlayer::Think( float fDelta )
|
||||
{
|
||||
|
||||
};
|
||||
|
||||
DECLARE_ENTITY(player, CBasePlayer);
|
||||
Reference in New Issue
Block a user