Files
funnygame/game/client/milmoba/player.h
2026-02-28 21:07:44 +02:00

22 lines
369 B
C++

#ifndef MILMOBA_PLAYER_H
#define MILMOBA_PLAYER_H
#include "basemodelentity.h"
class C_MOBAPlayer: public C_BaseModelEntity
{
public:
DECLARE_CLASS(C_MOBAPlayer, C_BaseModelEntity);
DECLARE_DATADESC();
DECLARE_CLIENTCLASS()
virtual void Precache ( void ) override;
virtual void Spawn( void ) override;
void Think( float fDelta );
float m_fTimer;
};
#endif