summaryrefslogtreecommitdiff
path: root/src/main/java/jp/plusplus/fbs/gui/GuiShopAuthor.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/jp/plusplus/fbs/gui/GuiShopAuthor.java')
-rw-r--r--src/main/java/jp/plusplus/fbs/gui/GuiShopAuthor.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/main/java/jp/plusplus/fbs/gui/GuiShopAuthor.java b/src/main/java/jp/plusplus/fbs/gui/GuiShopAuthor.java
new file mode 100644
index 0000000..a5079df
--- /dev/null
+++ b/src/main/java/jp/plusplus/fbs/gui/GuiShopAuthor.java
@@ -0,0 +1,18 @@
+package jp.plusplus.fbs.gui;
+
+import jp.plusplus.fbs.container.ContainerShopAuthor;
+import jp.plusplus.fbs.entity.EntityMagicAuthor;
+import net.minecraft.entity.player.EntityPlayer;
+import net.minecraft.world.World;
+import shift.mceconomy2.api.shop.IShop;
+import shift.mceconomy2.gui.GuiShop;
+
+/**
+ * Created by plusplus_F on 2016/02/24.
+ */
+public class GuiShopAuthor extends GuiShop {
+ public GuiShopAuthor(EntityPlayer entityPlayer, IShop productList, int id, World world, EntityMagicAuthor author) {
+ super(entityPlayer, productList, id, world);
+ inventorySlots=new ContainerShopAuthor(entityPlayer, productList, world, author);
+ }
+}