1
0
cuberite-2a/src/Blocks/BlockHayBale.h

30 lines
321 B
C
Raw Normal View History

2014-05-28 15:05:13 +00:00
#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";
}
} ;