Package org.mctourney.autoreferee.goals

Examples of org.mctourney.autoreferee.goals.BlockGoal


        for (AutoRefTeam team : match.getTeams())
        {
          boolean canBuild = !team.hasFlag(block.getLocation(), AutoRefRegion.Flag.NO_BUILD);
          boolean canEnter = !team.hasFlag(block.getLocation(), AutoRefRegion.Flag.NO_ENTRY);
          if (canBuild && canEnter) team.addGoal(new BlockGoal(team, block));
        }

        break;

      // this is the tool built for setting start mechanisms
View Full Code Here

TOP

Related Classes of org.mctourney.autoreferee.goals.BlockGoal

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.