85164fab8e
( http://forum.mc-server.org/showthread.php?tid=434&pid=4734#pid4734 ) git-svn-id: http://mc-server.googlecode.com/svn/trunk@917 0a769ca7-a7f5-676a-18bf-c427514a06d6
28 lines
299 B
C++
28 lines
299 B
C++
|
|
#pragma once
|
|
|
|
#include "BlockHandler.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockGravelHandler :
|
|
public cBlockHandler
|
|
{
|
|
public:
|
|
cBlockGravelHandler(BLOCKTYPE a_BlockID)
|
|
: cBlockHandler(a_BlockID)
|
|
{
|
|
}
|
|
|
|
virtual const char * GetStepSound(void) override
|
|
{
|
|
return "step.gravel";
|
|
}
|
|
} ;
|
|
|
|
|
|
|
|
|