/*
 * File: ./REMOTEINTERFACE/REMOTEPLAYER.JAVA
 * From: REMOTE.IDL
 * Date: Thu Jan 21 23:55:04 1999
 *   By: C:\JDK1.2\BIN\IDLTOJ~1.EXE Java IDL 1.2 Nov 10 1997 13:52:11
 */

package RemoteInterface;
public interface RemotePlayer
    extends org.omg.CORBA.Object {
    void resetGame()
;
    void yourMove(int[] state)
;
    boolean isYourTurn()
;
    void wonGame(int[] state)
;
    void lostGame(int[] state)
;
    void tieGame(int[] state)
;
}
