//***********************************************************
//*
//* File:           IFCPersistent.java
//* Author:         Srikant Krishna
//* Contact:        srikant@cs.columbia.edu
//* Update:         10.16.2002
//*
//* Description:    Persistent player interface for players
//*                 that need to be maintained across games.
//*                 Furthermore, these players also need
//*                 to be notified of the final result of
//*                 each game.
//*
//***********************************************************

package Rectangles;

public interface IFCPersistentPlayer extends IFCPlayer {

    public void gameOver()                            throws Exception;
}
