19 lines
269 B
C
19 lines
269 B
C
|
#pragma once
|
||
|
#include "Block.h"
|
||
|
|
||
|
|
||
|
class cBlockGravelHandler : public cBlockHandler
|
||
|
{
|
||
|
public:
|
||
|
cBlockGravelHandler(BLOCKTYPE a_BlockID)
|
||
|
: cBlockHandler(a_BlockID)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
virtual AString GetStepSound(void) override
|
||
|
{
|
||
|
return "step.gravel";
|
||
|
}
|
||
|
|
||
|
};
|