summaryrefslogblamecommitdiffstats
path: root/src/Blocks/BlockChest.h
blob: 119216d00e83017ee0ea88b39649bb6c7491d2d6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


            
                         
                               
                   




 
                                
                                                                                               
 
                                                                                                       
 
       
 
                           
 
 
                                                                             



                               
   

#pragma once

#include "../BlockArea.h"
#include "../Entities/Player.h"
#include "Mixins.h"





class cBlockChestHandler final :
	public cYawRotator<cClearMetaOnDrop<cBlockEntityHandler>, 0x07, 0x03, 0x04, 0x02, 0x05>
{
	using Super = cYawRotator<cClearMetaOnDrop<cBlockEntityHandler>, 0x07, 0x03, 0x04, 0x02, 0x05>;

public:

	using Super::Super;


	virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override
	{
		UNUSED(a_Meta);
		return 13;
	}
} ;