Commit 035e7b02 authored by TRAN Alain's avatar TRAN Alain

Add README.md

parent 6ba07485
Pipeline #474 canceled with stages
package tictactoecodingame;
/**
* @author Franck
*/
public abstract class Piece {
private Joueur joueur;
public Piece( Joueur _joueur ) {
this.joueur = _joueur;
}
public void setJoueur(Joueur _joueur) {
joueur = _joueur;
}
public Joueur getJoueur() {
return joueur;
}
abstract public String toString();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment