/*
 * MyObject.java
 *
 * Created on 09 October 2006, 00:39
 *
 * 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 interface MyObjectInterface {
    public Color getColor();
}

