Package com.pointcliki.dizgruntled.logic

Examples of com.pointcliki.dizgruntled.logic.Hidden.expose()


        if (!isCanceled()) {
          fGrunt.depleteStamina(4);
          fGrunt.map().tileToggle(fTarget);
          Hidden p = fGrunt.gridManager().getFirstEntityOfTypeAt(fTarget, Hidden.class);
         
          if (p != null) p.expose();
        }
        return Minion.FINISH;
      }
    }, 50);
    fGrunt.frameManager().queue(new Minion<FrameEvent>() {
View Full Code Here


      public long run(Dispatcher<FrameEvent> dispatcher, String type, FrameEvent event) {
        if (!isCanceled())  {
          fGrunt.depleteStamina(5);
          fGrunt.map().tileToggle(fTarget);
          Hidden p = fGrunt.gridManager().getFirstEntityOfTypeAt(fTarget, Hidden.class);
          if (p != null) p.expose();
        }
        return Minion.FINISH;
      }
    }, 105);
    fGrunt.frameManager().queue(new Minion<FrameEvent>() {
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.