/*
 * Obstacle.java
 *
 * Created on 15 October 2006, 18:49
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package ants;

import java.awt.Color;

/**
 *
 * @author James Hamilton
 */
public class Obstacle extends MyObject {
    
    /** Creates a new instance of Obstacle */
    public Obstacle(GridSquare gs) {
        super(gs);
    }
    
    public Color getColor() {
        return Color.PINK;
    }
}

