Package iryrwarosh.screens

Examples of iryrwarosh.screens.CastSpellScreen


  }
 
  public Item spellBook() {
    Item item = new Item("spellbook", '+', Common.hsv(200, 50, 50), "Used to cast one of 3 basic spells."){
      public Screen use(Screen screen, World world, Creature owner){
        return new CastSpellScreen(screen, world, owner);
      }
    };
    return item;
  }
View Full Code Here

TOP

Related Classes of iryrwarosh.screens.CastSpellScreen

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.