//***********************************************************
//*
//* File:           IFCPlayer.java
//* Author:         Srikant Krishna
//* Contact:        srikant@cs.columbia.edu
//* Update:         10.16.2002
//*
//* Description:    Player interface for all Rectangle
//*                 contestants.  The interface is
//*                 intentionally minimal to accelerate
//*                 player development.
//*
//***********************************************************

package Rectangles;

import java.io.Serializable;
import java.awt.Color;

public interface IFCPlayer extends IFCConstants, Serializable {

    public Robot[]  register(Rectangles __rectangles) throws Exception;
    public char[]   move()                            throws Exception;
    public String   name()                            throws Exception;
    public Color    color()                           throws Exception;
    public boolean  interactive()                     throws Exception;
}

