Commit 6ba07485 authored by CRESCENCE Cassandre's avatar CRESCENCE Cassandre

Add new file

parent acb0f979
Pipeline #473 canceled with stages
package tictactoecodingame;
/**
* @author Franck
*/
public class Case {
int colonne, ligne;
public Case(int _colonne, int _ligne) {
this.colonne = _colonne;
this.ligne = _ligne;
}
public int getColonne() {
return colonne;
}
public int getLigne() {
return ligne;
}
public void setLigne( int _ligne ) {
this.ligne = _ligne;
}
public void setColonne( int _colonne ) {
this.colonne = _colonne;
}
}
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