Package com.mojang.minecraft

Examples of com.mojang.minecraft.StopGameException


      this.minecraft = var1;
   }

   public final void setTitle(String var1) {
      if(!this.minecraft.running) {
         throw new StopGameException();
      } else {
         this.title = var1;
         int var3 = this.minecraft.width * 240 / this.minecraft.height;
         int var2 = this.minecraft.height * 240 / this.minecraft.height;
         GL11.glClear(256);
View Full Code Here


      }
   }

   public final void setText(String var1) {
      if(!this.minecraft.running) {
         throw new StopGameException();
      } else {
         this.text = var1;
         this.setProgress(-1);
      }
   }
View Full Code Here

      }
   }

   public final void setProgress(int var1) {
      if(!this.minecraft.running) {
         throw new StopGameException();
      } else {
         long var2;
         if((var2 = System.currentTimeMillis()) - this.start < 0L || var2 - this.start >= 20L) {
            this.start = var2;
            int var4 = this.minecraft.width * 240 / this.minecraft.height;
View Full Code Here

TOP

Related Classes of com.mojang.minecraft.StopGameException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.