blob: a5079df6d0b91c48a59a096d67d976371db499d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
}
}
|