summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockHayBale.h
blob: 8150b10d359a74ff6ff3c3316fed9c913fff82e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

#pragma once

#include "BlockSideways.h"





class cBlockHayBaleHandler :
	public cBlockSidewaysHandler
{
public:
	cBlockHayBaleHandler(BLOCKTYPE a_BlockType)
		: cBlockSidewaysHandler(a_BlockType)
	{
	}
} ;