Interface ClientDistant
import java.rmi.*;
/** <B>Cahier des charges :</B>
*
* <p>Interface permettant au serveur de communiquer avec ses clients.
*
* @author Guillaume BLANC
* @author Cyrille FLAMBART
* @version JDK 1.1.6
* @see Client
* @see Damier
* @see Serveur
*
*/
//****************************Interface ClientDistant**********************
public interface ClientDistant extends Remote {
public void afficheToi() throws RemoteException;
public void redessineToi(Pion pion) throws RemoteException;
public Pion getPionJoue() throws RemoteException;
public void annulerDeplacement() throws RemoteException;
public void nouvellePartie() throws RemoteException;
public void deconnecteToi() throws RemoteException;
public void gagneClient(int type) throws RemoteException;
}//Fin de l'interface ClientDistant