10 lines
270 B
C#
10 lines
270 B
C#
public class AIConstants
|
|
{
|
|
public static readonly int[][] Directions = new int[][]
|
|
{
|
|
new int[] {1, 0}, // 수직
|
|
new int[] {0, 1}, // 수평
|
|
new int[] {1, 1}, // 대각선 ↘ ↖
|
|
new int[] {1, -1} // 대각선 ↙ ↗
|
|
};
|
|
} |