/*
 * Food.java
 *
 * Created on 07 October 2006, 15:45
 *
 * 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 Food extends MyObject {
    
    private static final Color color = new Color(150, 255, 150);
    
    /** Creates a new instance of Food */
    public Food() {
    }
    
    public Food(GridSquare s) {
        super(s);
    }   
     
    public Color getColor() {
        return color;
    }
    
    public String toString() {
        return "Food";
    }
  
}

