summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockPumpkin.h
blob: 81ba080bed60e4b4dae05dfc259c42e20782e052 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#pragma once

#include "BlockHandler.h"
#include "Mixins.h"



class cBlockPumpkinHandler :
	public cClearMetaOnDrop<cYawRotator<cBlockHandler, 0x03, 0x00, 0x01, 0x02, 0x03>>
{
	using Super = cClearMetaOnDrop<cYawRotator<cBlockHandler, 0x03, 0x00, 0x01, 0x02, 0x03>>;
public:

	cBlockPumpkinHandler(BLOCKTYPE a_BlockType) :
		Super(a_BlockType)
	{
	}

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