blob: 3c1ae7c250a2610d437b34a8d26434e18d9205ca (
plain) (
tree)
|
|
#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";
}
} ;
|