1
0
cuberite-2a/src/Entities/Pawn.h
archshift e98ffccd80 Pawn: Enabled entity effect broadcast, added typedef
Typedef'd std::map<cEntityEffect::eType, cEntityEffect> to tEffectMap
2014-06-17 11:39:19 -07:00

38 lines
689 B
C++

#pragma once
#include "Entity.h"
#include "EntityEffects.h"
// tolua_begin
class cPawn :
public cEntity
{
// tolua_end
typedef cEntity super;
public:
CLASS_PROTODEF(cPawn);
cPawn(eEntityType a_EntityType, double a_Width, double a_Height);
virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
void AddEntityEffect(cEntityEffect::eType a_EffectType, cEntityEffect a_Effect);
void RemoveEntityEffect(cEntityEffect::eType a_EffectType);
protected:
typedef std::map<cEntityEffect::eType, cEntityEffect> tEffectMap;
tEffectMap m_EntityEffects;
virtual void HandleEntityEffects(cEntityEffect::eType a_EffectType, cEntityEffect a_Effect);
} ; // tolua_export