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

28 lines
273 B
C
Raw Normal View History

#pragma once
#include "BlockHandler.h"
class cBlockClothHandler :
public cBlockHandler
{
public:
cBlockClothHandler(BLOCKTYPE a_BlockType)
: cBlockHandler(a_BlockType)
{
}
virtual const char * GetStepSound(void) override
{
return "step.cloth";
}
} ;