summaryrefslogblamecommitdiffstats
path: root/src/Blocks/BlockDropSpenser.h
blob: 0f6863ea41a446ccb9d9847fe301d49a1316059a (plain) (tree)
1
2
3
4
5
6
7
8
9






                                                                                                             
                   
 



 
                                      
                                                                                                                
 
                                                                                                                        
 
       
 
                           
 
        
 
                                                                             



                               
   

// BlockDropSpenser.h

// Declares the cBlockDropSpenserHandler class representing the BlockHandler for Dropper and Dispenser blocks

#pragma once

#include "Mixins.h"





class cBlockDropSpenserHandler final :
	public cPitchYawRotator<cClearMetaOnDrop<cBlockEntityHandler>, 0x07, 0x03, 0x04, 0x02, 0x05, 0x01, 0x00>
{
	using Super = cPitchYawRotator<cClearMetaOnDrop<cBlockEntityHandler>, 0x07, 0x03, 0x04, 0x02, 0x05, 0x01, 0x00>;

public:

	using Super::Super;

private:

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