diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-11 14:01:34 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-11 14:01:34 +0200 |
commit | 9eed83c33ae8c2bbb1781a01f05326dba667f4e3 (patch) | |
tree | 339ae563c07ba06b55a7f127dbd8c52f83e4dd66 /source/blocks/Block.h | |
parent | Core's Web Chat should work on FireFox again. Apparently it appends "charset=utf-8" to the content type which was not properly handled. (diff) | |
download | cuberite-9eed83c33ae8c2bbb1781a01f05326dba667f4e3.tar cuberite-9eed83c33ae8c2bbb1781a01f05326dba667f4e3.tar.gz cuberite-9eed83c33ae8c2bbb1781a01f05326dba667f4e3.tar.bz2 cuberite-9eed83c33ae8c2bbb1781a01f05326dba667f4e3.tar.lz cuberite-9eed83c33ae8c2bbb1781a01f05326dba667f4e3.tar.xz cuberite-9eed83c33ae8c2bbb1781a01f05326dba667f4e3.tar.zst cuberite-9eed83c33ae8c2bbb1781a01f05326dba667f4e3.zip |
Diffstat (limited to 'source/blocks/Block.h')
-rw-r--r-- | source/blocks/Block.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blocks/Block.h b/source/blocks/Block.h index ef22e01b5..859870c4a 100644 --- a/source/blocks/Block.h +++ b/source/blocks/Block.h @@ -41,7 +41,8 @@ public: virtual NIBBLETYPE GetDropMeta(NIBBLETYPE a_BlockMeta);
// This function handles the dropping of a block based on the Drop id, drop count and drop meta. This will not destroy the block
virtual void DropBlock(cWorld *a_World, int a_X, int a_Y, int a_Z);
-
+ /// Returns step sound name of block
+ virtual AString GetStepSound();
// Indicates whether this block needs random ticks DEFAULT: False
virtual bool NeedsRandomTicks();
|