summaryrefslogblamecommitdiffstats
path: root/source/Items/ItemSapling.h
blob: ed635d2653f9bfa9301e9ef7d0d671a28cf985d7 (plain) (tree)
1
2
3
4
5
6
7
8
9
 

             
                         

 


 


                                                

                                            



          
                                                                     
          

                                                          
          




    

#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);
	}
} ;