Files
cuberite-2a/source/Items/ItemFlowerPot.h
T

42 lines
626 B
C++
Raw Normal View History

2012-12-27 01:01:16 +00:00
#pragma once
#include "ItemHandler.h"
class cItemFlowerPotHandler :
public cItemHandler
2012-12-27 01:01:16 +00:00
{
public:
cItemFlowerPotHandler(int a_ItemType) :
cItemHandler(a_ItemType)
2012-12-27 01:01:16 +00:00
{
}
virtual bool IsPlaceable(void) override
2012-12-27 01:01:16 +00:00
{
return true;
}
virtual bool GetPlacementBlockTypeMeta(
cWorld * a_World, cPlayer * a_Player,
int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace,
int a_CursorX, int a_CursorY, int a_CursorZ,
BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
) override
2012-12-27 01:01:16 +00:00
{
a_BlockType = E_BLOCK_FLOWER_POT;
a_BlockMeta = 0;
return true;
2012-12-27 01:01:16 +00:00
}
} ;
2012-12-27 01:01:16 +00:00