summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockCloth.h
blob: dca7184cb47c0c153f53a586a00c6a1a30c00683 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include "Block.h"


class cBlockClothHandler : public cBlockHandler
{
public:
	cBlockClothHandler(BLOCKTYPE a_BlockID);
	char GetDropMeta(char a_BlockMeta)
	{
		return a_BlockMeta;
	}
	
};