Advertisement
MOHshow

GuiObjectif.java

Aug 27th, 2013
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.71 KB | None | 0 0
  1. package modobjectif;
  2.  
  3. import org.lwjgl.opengl.GL11;
  4.  
  5. import net.minecraft.client.gui.GuiScreen;
  6. import net.minecraft.util.ResourceLocation;
  7. import cpw.mods.fml.relauncher.Side;
  8. import cpw.mods.fml.relauncher.SideOnly;
  9.  
  10.  
  11. @SideOnly(Side.CLIENT)
  12. public class GuiObjectif extends GuiScreen
  13. {
  14.  
  15.  
  16.     private static final ResourceLocation field_110410_t = new ResourceLocation("rm:textures/gui/objectif.png");
  17.    
  18.    
  19.     public void initGui()
  20.     {
  21.        
  22.  
  23.     }
  24.    
  25.     public void drawScreen(int par1, int par2, float par3)
  26.     {
  27.         this.drawDefaultBackground();
  28.         this.drawCenteredString(this.fontRenderer, "Objectif", this.width / 2, 40, 16777215);
  29.         super.drawScreen(par1, par2, par3);
  30.     }
  31.    
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement