ddnet/src/game/server/entities/pickup.h

27 lines
432 B
C
Raw Normal View History

2010-05-29 07:25:38 +00:00
#ifndef GAME_SERVER_ENTITIES_PICKUP_H
#define GAME_SERVER_ENTITIES_PICKUP_H
#include <game/server/entity.h>
const int PickupPhysSize = 14;
class CPickup : public CEntity
{
public:
CPickup(CGameWorld *pGameWorld, int Type, int SubType = 0);
virtual void Reset();
virtual void Tick();
virtual void Snap(int SnappingClient);
private:
void Move();
2010-05-29 07:25:38 +00:00
int m_Type;
int m_Subtype;
//int m_SpawnTick;
vec2 m_Core;
2010-05-29 07:25:38 +00:00
};
#endif