Files
cuberite-2a/source/items/ItemSapling.h
T

29 lines
356 B
C++
Raw Normal View History

2012-07-15 20:36:34 +00:00
#pragma once
#include "Item.h"
2012-07-15 20:36:34 +00:00
class cItemSaplingHandler : public cItemHandler
{
public:
cItemSaplingHandler(int a_ItemID)
: cItemHandler(a_ItemID)
{
}
virtual NIBBLETYPE GetBlockMeta(short a_ItemDamage) override
2012-07-15 20:36:34 +00:00
{
// Only the lowest 3 bits are important
return (NIBBLETYPE)(a_ItemDamage & 0x07);
2012-07-15 20:36:34 +00:00
}
} ;