예제 #1
0
파일: Move.cs 프로젝트: sZRAMEK/Chess
 public Move(IPosition start, IPosition destination)
 {
     this.Start       = start;
     this.Destination = destination;
     if (start.AreTheSame(destination))
     {
         throw new ArgumentException();
     }
 }