summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockRedstoneTorch.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/blocks/BlockRedstoneTorch.h')
-rw-r--r--source/blocks/BlockRedstoneTorch.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/source/blocks/BlockRedstoneTorch.h b/source/blocks/BlockRedstoneTorch.h
deleted file mode 100644
index eeb2afc5c..000000000
--- a/source/blocks/BlockRedstoneTorch.h
+++ /dev/null
@@ -1,28 +0,0 @@
-
-#pragma once
-#include "BlockRedstone.h"
-#include "BlockTorch.h"
-#include "../Torch.h"
-
-
-
-
-
-class cBlockRedstoneTorchHandler : public cBlockTorchHandler
-{
-public:
- cBlockRedstoneTorchHandler(BLOCKTYPE a_BlockID)
- : cBlockTorchHandler(a_BlockID)
- {
- }
-
- virtual int GetDropID(void) override
- {
- return E_ITEM_REDSTONE_TORCH_ON;
- }
-
- virtual AString GetStepSound(void) override
- {
- return "step.wood";
- }
-};