mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 11:38:19 +00:00
26 lines
592 B
C++
26 lines
592 B
C++
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
|
|
/* If you are missing that file, acquire a complete release at teeworlds.com. */
|
|
#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:
|
|
int m_Type;
|
|
int m_Subtype;
|
|
int m_SpawnTick;
|
|
};
|
|
|
|
#endif
|