package geniusweb.inform; /** * Informs a party that he has the turn and can choose the next action. */ public class YourTurn implements Inform { @Override public int hashCode() { return 1; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; return true; } @Override public String toString() { return "YourTurn"; } }