summaryrefslogblamecommitdiffstats
path: root/src/Blocks/BlockJukebox.h
blob: c2c9bda63593b1036934a96cb00dfd85648148be (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                    

       
                                                                      
 
        
 
                                                                             

                               
                          

         

#pragma once

#include "BlockEntity.h"
#include "Mixins.h"





class cBlockJukeboxHandler :
	public cClearMetaOnDrop<cBlockEntityHandler>
{
public:

	using cClearMetaOnDrop<cBlockEntityHandler>::cClearMetaOnDrop;

private:

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