Package com.pointcliki.dizgruntled.task

Examples of com.pointcliki.dizgruntled.task.RockBreakTask


      return;
    }
   
    Task t = null;
   
    if (fTool.equals("GAUNTLETZ")) t = new RockBreakTask(this, xy);
    else if (fTool.equals("SHOVEL")) t = new HoleDigTask(this, xy);
    else if (fTool.equals("GOOBER")) t = new GooSuckTask(this, xy);
   
    if (t != null) {
      boolean okay = t.start();
View Full Code Here

TOP

Related Classes of com.pointcliki.dizgruntled.task.RockBreakTask

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.