Guest User

Untitled

a guest
Apr 20th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.84 KB | None | 0 0
  1.     /**
  2.      * Returns a set containing all enemy ants locations.
  3.      *
  4.      * @return a set containing all enemy ants locations
  5.      */
  6.     public Set<Tile> getEnemyAnts() {
  7.         return enemyAnts;
  8.     }
  9.  
  10.     /**
  11.      * Returns a set containing all my hills locations.
  12.      *
  13.      * @return a set containing all my hills locations
  14.      */
  15.     public Set<Tile> getMyHills() {
  16.         return myHills;
  17.     }
  18.  
  19.     /**
  20.      * Returns a set containing all enemy hills locations.
  21.      *
  22.      * @return a set containing all enemy hills locations
  23.      */
  24.     public Set<Tile> getEnemyHills() {
  25.         return enemyHills;
  26.     }
  27.  
  28.     /**
  29.      * Returns a set containing all food locations.
  30.      *
  31.      * @return a set containing all food locations
  32.      */
  33.     public Set<Tile> getFoodTiles() {
  34.         return foodTiles;
  35.     }
Add Comment
Please, Sign In to add comment