Commit 9f7aae98 authored by CRESCENCE Cassandre's avatar CRESCENCE Cassandre

Add new file

parent 035e7b02
Pipeline #475 canceled with stages
package tictactoecodingame;
/**
* @author Franck
*/
public abstract class Coup {
private int note;
public Coup() {
note = Integer.MIN_VALUE; // un coup est tres mauvais tant qu'il n'est pas analysé.
}
public void setNote(int _note) {
note = _note;
}
public int getNote() {
return note;
}
abstract public String toString();
abstract public boolean equals(Object obj);
abstract public int hashCode();
}
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