summaryrefslogtreecommitdiffstats
path: root/src/Entities/ItemFrame.h
blob: 08363e5d8fa037c320ff53dadae479626365ecce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50

#pragma once

#include "HangingEntity.h"





// tolua_begin
class cItemFrame :
	public cHangingEntity
{
	// tolua_end

	using Super = cHangingEntity;

public:  // tolua_export

	CLASS_PROTODEF(cItemFrame)

	cItemFrame(eBlockFace a_BlockFace, Vector3d a_Pos);

	// tolua_begin

	/** Returns the item in the frame */
	const cItem & GetItem(void) const { return m_Item; }

	/** Set the item in the frame */
	void SetItem(cItem & a_Item) { m_Item = a_Item; }

	/** Returns the rotation from the item in the frame */
	Byte GetItemRotation(void) const { return m_ItemRotation; }

	/** Set the rotation from the item in the frame */
	void SetItemRotation(Byte a_ItemRotation) { m_ItemRotation = a_ItemRotation; }

	// tolua_end

private:

	virtual bool DoTakeDamage(TakeDamageInfo & a_TDI) override;
	virtual void GetDrops(cItems & a_Items, cEntity * a_Killer) override;
	virtual void OnRightClicked(cPlayer & a_Player) override;
	virtual void SpawnOn(cClientHandle & a_ClientHandle) override;

	cItem m_Item;
	Byte m_ItemRotation;

};  // tolua_export