Exemple #1
0
 public virtual CurrentGameResult CheckState(Figure another)
 {
     return CurrentGameResult.Ok;
 }
Exemple #2
0
 public override CurrentGameResult CheckState(Figure another)
 {
     throw new NotImplementedException();
 }
Exemple #3
0
 public virtual bool CanEat(Figure another)
 {
     if(another.Color != this.Color) return true;
     else return false;
 }