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

#pragma once

#include "BlockHandler.h"
#include "BlockSideways.h"





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


	virtual const char * GetStepSound(void) override
	{
		return "step.grass";
	}
} ;