KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > innig > macker > example > modularity > player > Player


1 package net.innig.macker.example.modularity.player;
2
3 import net.innig.macker.example.modularity.game.*;
4 import java.util.*;
5
6 public interface Player
7     {
8     public Move nextMove(Set legalMoves, Move otherPreviousMove);
9     }
Popular Tags