summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockCobWeb.h
blob: 29a6b815505fbc98ba2ed1fdbb844307f150ddab (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

// BlockCobWeb.h

// Declares the cBlockCobWebHandler object representing the BlockHandler for cobwebs

#pragma once





class cBlockCobWebHandler :
	public cClearMetaOnDrop<cBlockHandler>
{
public:
	cBlockCobWebHandler(BLOCKTYPE a_BlockType)
		: cClearMetaOnDrop<cBlockHandler>(a_BlockType)
	{
	}
} ;