Beispiel #1
0
 public void Shift(Direction d)
 {
     if (_myBoard.CanShift(d))
     {
         ulX += (byte)d * 2 - 1;
     }
 }