1
0
cuberite-2a/source/Items/ItemSapling.h
madmaxoft@gmail.com 4df23d19b7 Unified folder name-casing
git-svn-id: http://mc-server.googlecode.com/svn/trunk@902 0a769ca7-a7f5-676a-18bf-c427514a06d6
2012-09-29 13:59:32 +00:00

29 lines
363 B
C++

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