30 lines
321 B
C
30 lines
321 B
C
|
|
||
|
#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";
|
||
|
}
|
||
|
} ;
|
||
|
|
||
|
|
||
|
|
||
|
|