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