5b1552435f
* Fixes #1174 * Fixes #1171
29 lines
295 B
C++
29 lines
295 B
C++
|
|
#pragma once
|
|
|
|
#include "BlockSideways.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockHayBaleHandler :
|
|
public cBlockSidewaysHandler
|
|
{
|
|
public:
|
|
cBlockHayBaleHandler(BLOCKTYPE a_BlockType)
|
|
: cBlockSidewaysHandler(a_BlockType)
|
|
{
|
|
}
|
|
|
|
|
|
virtual const char * GetStepSound(void) override
|
|
{
|
|
return "step.grass";
|
|
}
|
|
} ;
|
|
|
|
|
|
|
|
|