Package cz.cuni.mff.abacs.burglar.logics.objects.items

Examples of cz.cuni.mff.abacs.burglar.logics.objects.items.Treasure


  private static Item getTreasure(Element treasureElement, DataMap map) {
    // get the attributes:       
    int id = XMLBase.getIntAttrOrZero(treasureElement, STR_ID);
   
    // create the object:
    Item item = new Treasure(id, map);
   
    return item;
  }
View Full Code Here

TOP

Related Classes of cz.cuni.mff.abacs.burglar.logics.objects.items.Treasure

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.