Package com.drakulo.games.ais.core.delayed

Examples of com.drakulo.games.ais.core.delayed.ResearchAction.step()


  private static void researchProcess(Colony c) {
    ResearchAction research = c.getResearch();
    // If the research is null, that's because the player didn't started a
    // research. In that case, there is nothing to do.
    if (research != null) {
      research.step();
      if (research.isDone()) {
        // The research is done.
        research.getTechnology().setOwned(true);
        c.setResearch(null);
      }
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.