To load this file without formatting, visit http://whoyouknow.co.uk/ants/java/15.1/src/ants/Obstacle.java. This is a spam-protection measure; sorry for the inconvenience.
· Obstacle.java ·
1/* 2 * Obstacle.java 3 * 4 * Created on 15 October 2006, 18:49 5 * 6 * To change this template, choose Tools | Template Manager 7 * and open the template in the editor. 8 */ 9 10package ants; 11 12import java.awt.Color; 13 14/** 15 * 16 * @author James Hamilton 17 */ 18public class Obstacle extends MyObject { 19 20 /** Creates a new instance of Obstacle */ 21 public Obstacle(GridSquare gs) { 22 super(gs); 23 } 24 25 public Color getColor() { 26 return Color.PINK; 27 } 28} 29
· Obstacle.java ends ·
To load this file without formatting, visit http://whoyouknow.co.uk/ants/java/15.1/src/ants/Obstacle.java. This is a spam-protection measure; sorry for the inconvenience.