blob: 9bc5039f86954f0ccb1511ba8771481f06bd2631 (
plain) (
tree)
|
|
#pragma once
#include "Entity.h"
class cFloater :
public cEntity
{
typedef cFloater super;
public:
cFloater(double a_X, double a_Y, double a_Z, Vector3d a_Speed, int a_PlayerID);
virtual void SpawnOn(cClientHandle & a_Client) override;
virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
bool CanPickup(void) const { return m_CanPickupItem; }
protected:
Vector3d m_Speed;
int m_PickupCountDown;
int m_PlayerID;
bool m_CanPickupItem;
} ;
|