1
0
cuberite-2a/source/Items/ItemSapling.h
2012-10-18 19:41:29 +00:00

29 lines
367 B
C++

#pragma once
#include "ItemHandler.h"
class cItemSaplingHandler : public cItemHandler
{
public:
cItemSaplingHandler(int a_ItemType)
: cItemHandler(a_ItemType)
{
}
virtual NIBBLETYPE GetBlockMeta(short a_ItemDamage) override
{
// Only the lowest 3 bits are important
return (NIBBLETYPE)(a_ItemDamage & 0x07);
}
} ;