예제 #1
0
 public static BasicBoard Create(int size = 8)
 {
     BasicBoard b = new BasicBoard(size);
     b.ResetWithSize(size);
     return b;
 }