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

55 lines
1.0 KiB
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
{
// tolua_end
2020-04-13 16:38:06 +00:00
using Super = cHangingEntity;
public: // tolua_export
CLASS_PROTODEF(cItemFrame)
cItemFrame(eBlockFace a_BlockFace, Vector3d a_Pos);
// tolua_begin
2014-03-15 01:45:25 +00:00
/** Returns the item in the frame */
const cItem & GetItem(void) const { 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 */
2014-10-21 20:32:17 +00:00
void SetItemRotation(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;
virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
cItem m_Item;
Byte m_ItemRotation;
}; // tolua_export