blob: ba444d7b0fc3d44f49e756de8b2480130a48285a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
package binnie.craftgui.extratrees.dictionary;
import binnie.core.AbstractMod;
import binnie.craftgui.minecraft.Window;
import binnie.extratrees.ExtraTrees;
import cpw.mods.fml.relauncher.Side;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.world.World;
public class WindowSetSquare
extends Window
{
public WindowSetSquare(EntityPlayer player, IInventory inventory, Side side)
{
super(150.0F, 150.0F, player, inventory, side);
}
protected AbstractMod getMod()
{
return ExtraTrees.instance;
}
protected String getName()
{
return null;
}
public void initialiseClient() {}
public static Window create(EntityPlayer player, World world, int x, int y, int z, Side side)
{
return new WindowSetSquare(player, null, side);
}
}
|