summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockCloth.h
blob: 452ad2237eeafabefc4fd3be53a5232356485818 (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
#pragma once
#include "BlockHandler.h"


class cBlockClothHandler : public cBlockHandler
{
public:
	cBlockClothHandler(BLOCKTYPE a_BlockID)
		: cBlockHandler(a_BlockID)
	{
	}

	virtual NIBBLETYPE GetDropMeta(NIBBLETYPE a_BlockMeta) override
	{
		return a_BlockMeta;
	}

	virtual AString GetStepSound(void) override
	{
		return "step.cloth";
	}
	
};