diff options
Diffstat (limited to 'source/blocks/BlockRedstoneOre.h')
-rw-r--r-- | source/blocks/BlockRedstoneOre.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/source/blocks/BlockRedstoneOre.h b/source/blocks/BlockRedstoneOre.h deleted file mode 100644 index 5658d76ad..000000000 --- a/source/blocks/BlockRedstoneOre.h +++ /dev/null @@ -1,26 +0,0 @@ -#pragma once
-#include "Block.h"
-#include "../MersenneTwister.h"
-#include "../cWorld.h"
-
-class cBlockRedstoneOreHandler : public cBlockHandler
-{
-public:
- cBlockRedstoneOreHandler(BLOCKTYPE a_BlockID)
- : cBlockHandler(a_BlockID)
- {
- }
-
- virtual int GetDropID()
- {
- return E_ITEM_REDSTONE_DUST;
- }
-
- virtual char GetDropCount()
- {
- MTRand r1;
- return 4 + r1.randInt(1);
- }
-
-
-};
\ No newline at end of file |