summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockSand.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/blocks/BlockSand.h')
-rw-r--r--source/blocks/BlockSand.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/source/blocks/BlockSand.h b/source/blocks/BlockSand.h
deleted file mode 100644
index 69fda5ec6..000000000
--- a/source/blocks/BlockSand.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#pragma once
-#include "BlockHandler.h"
-
-
-class cBlockSandHandler : public cBlockHandler
-{
-public:
- cBlockSandHandler(BLOCKTYPE a_BlockID)
- : cBlockHandler(a_BlockID)
- {
- }
-
- virtual AString GetStepSound(void) override
- {
- return "step.sand";
- }
-
-};