aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/GlowstoneTile.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/GlowstoneTile.h')
-rw-r--r--Minecraft.World/GlowstoneTile.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/Minecraft.World/GlowstoneTile.h b/Minecraft.World/GlowstoneTile.h
new file mode 100644
index 00000000..f09491bd
--- /dev/null
+++ b/Minecraft.World/GlowstoneTile.h
@@ -0,0 +1,13 @@
+#pragma once
+#include "Tile.h"
+
+class Random;
+
+class Glowstonetile : public Tile
+{
+public:
+ Glowstonetile(int id, Material *material);
+ virtual int getResourceCountForLootBonus(int bonusLevel, Random *random);
+ virtual int getResourceCount(Random *random);
+ virtual int getResource(int data, Random *random, int playerBonusLevel);
+}; \ No newline at end of file