Package cn.com.hotmaze.util

Examples of cn.com.hotmaze.util.RoomMap.clone()


 
  public RoomMap createMapById(String map_id){
    RoomMap map = ((Map<String, RoomMap>) MapContext.map).get(map_id);
    System.out.println("can't find map "+map_id);
    assert(map != null);
    return map.clone();
  }
 
  public void reloadAllMap(){
    Iterator<String>  itr = MapContext.map.keySet().iterator();
    while(itr.hasNext()){
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.