18 lines
293 B
C++
18 lines
293 B
C++
#ifndef MILMOBA_PLAYER_H
|
|
#define MILMOBA_PLAYER_H
|
|
|
|
#include "physicsprop.h"
|
|
|
|
class CMOBAPlayer: public CPhysicsProp
|
|
{
|
|
public:
|
|
DECLARE_CLASS(CMOBAPlayer, CPhysicsProp);
|
|
DECLARE_DATADESC();
|
|
DECLARE_SERVERCLASS()
|
|
|
|
virtual void Spawn( void ) override;
|
|
void Think( float fDelta );
|
|
};
|
|
|
|
#endif
|