1
0
Fork 0
cuberite-2a/src/Entities/ItemFrame.h

54 lines
977 B
C
Raw Normal View History

#pragma once
2014-03-15 01:45:25 +00:00
#include "HangingEntity.h"
// tolua_begin
class cItemFrame :
2014-03-15 01:45:25 +00:00
public cHangingEntity
{
2014-03-15 01:45:25 +00:00
typedef cHangingEntity super;
public:
// tolua_end
CLASS_PROTODEF(cItemFrame)
2014-02-18 21:33:33 +00:00
cItemFrame(eBlockFace a_BlockFace, double a_X, double a_Y, double a_Z);
// tolua_begin
2014-03-15 01:45:25 +00:00
/** Returns the item in the frame */
const cItem & GetItem(void) { return m_Item; }
2014-03-15 01:45:25 +00:00
/** Set the item in the frame */
void SetItem(cItem & a_Item) { m_Item = a_Item; }
2014-03-15 01:45:25 +00:00
/** Returns the rotation from the item in the frame */
Byte GetItemRotation(void) const { return m_ItemRotation; }
2014-03-15 01:45:25 +00:00
/** Set the rotation from the item in the frame */
void SetRotation(Byte a_ItemRotation) { m_ItemRotation = a_ItemRotation; }
// tolua_end
private:
virtual void OnRightClicked(cPlayer & a_Player) override;
2014-07-04 09:55:09 +00:00
virtual void KilledBy(TakeDamageInfo & a_TDI) override;
virtual void GetDrops(cItems & a_Items, cEntity * a_Killer) override;
cItem m_Item;
Byte m_ItemRotation;
}; // tolua_export