blob: 75082c8a6061b353b9c4ad0e7f8bb5743eb426f2 (
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";
}
} ;
|