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