Files
funnygame/game/server/milmoba/player.h
2026-03-29 19:38:17 +03:00

24 lines
402 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()
CMOBAPlayer();
virtual ~CMOBAPlayer();
virtual void Spawn( void ) override;
void Think( float fDelta );
private:
Vector m_vMovementVector = {};
HShape m_hCuboid = NULL;
};
#endif