Examples of JumpScreen


Examples of iryrwarosh.screens.JumpScreen

  }
 
  public Item jumpingBoots() {
    Item item = new Item("jumping boots", '[', Common.hsv(180, 50, 50), "Makes you more evasive and can be used to jump."){
      public Screen use(Screen screen, World world, Creature owner){
        return new JumpScreen(screen, world, owner);
      }
    };
    return item;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.