You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.2 KiB
Java
85 lines
2.2 KiB
Java
package net.minecraft.realms;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.client.Minecraft;
|
|
import net.minecraft.client.gui.GuiButton;
|
|
import net.minecraft.client.gui.GuiButtonRealmsProxy;
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public class RealmsButton
|
|
{
|
|
private GuiButtonRealmsProxy proxy;
|
|
private static final String __OBFID = "CL_00001890";
|
|
|
|
public RealmsButton(int p_i1177_1_, int p_i1177_2_, int p_i1177_3_, String p_i1177_4_)
|
|
{
|
|
this.proxy = new GuiButtonRealmsProxy(this, p_i1177_1_, p_i1177_2_, p_i1177_3_, p_i1177_4_);
|
|
}
|
|
|
|
public RealmsButton(int p_i1178_1_, int p_i1178_2_, int p_i1178_3_, int p_i1178_4_, int p_i1178_5_, String p_i1178_6_)
|
|
{
|
|
this.proxy = new GuiButtonRealmsProxy(this, p_i1178_1_, p_i1178_2_, p_i1178_3_, p_i1178_6_, p_i1178_4_, p_i1178_5_);
|
|
}
|
|
|
|
public GuiButton getProxy()
|
|
{
|
|
return this.proxy;
|
|
}
|
|
|
|
public int id()
|
|
{
|
|
return this.proxy.func_154314_d();
|
|
}
|
|
|
|
public boolean active()
|
|
{
|
|
return this.proxy.func_154315_e();
|
|
}
|
|
|
|
public void active(boolean p_active_1_)
|
|
{
|
|
this.proxy.func_154313_b(p_active_1_);
|
|
}
|
|
|
|
public void msg(String p_msg_1_)
|
|
{
|
|
this.proxy.func_154311_a(p_msg_1_);
|
|
}
|
|
|
|
public int getWidth()
|
|
{
|
|
return this.proxy.getButtonWidth();
|
|
}
|
|
|
|
public int getHeight()
|
|
{
|
|
return this.proxy.func_154310_c();
|
|
}
|
|
|
|
public int y()
|
|
{
|
|
return this.proxy.func_154316_f();
|
|
}
|
|
|
|
public void render(int p_render_1_, int p_render_2_)
|
|
{
|
|
this.proxy.drawButton(Minecraft.getMinecraft(), p_render_1_, p_render_2_);
|
|
}
|
|
|
|
public void clicked(int p_clicked_1_, int p_clicked_2_) {}
|
|
|
|
public void released(int p_released_1_, int p_released_2_) {}
|
|
|
|
public void blit(int p_blit_1_, int p_blit_2_, int p_blit_3_, int p_blit_4_, int p_blit_5_, int p_blit_6_)
|
|
{
|
|
this.proxy.drawTexturedModalRect(p_blit_1_, p_blit_2_, p_blit_3_, p_blit_4_, p_blit_5_, p_blit_6_);
|
|
}
|
|
|
|
public void renderBg(int p_renderBg_1_, int p_renderBg_2_) {}
|
|
|
|
public int getYImage(boolean p_getYImage_1_)
|
|
{
|
|
return this.proxy.func_154312_c(p_getYImage_1_);
|
|
}
|
|
} |