-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSquare.cs
More file actions
71 lines (70 loc) · 876 Bytes
/
Square.cs
File metadata and controls
71 lines (70 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
namespace ChessBot
{
public enum Square
{
a1 = 0,
b1 = 1,
c1 = 2,
d1 = 3,
e1 = 4,
f1 = 5,
g1 = 6,
h1 = 7,
a2 = 8,
b2 = 9,
c2 = 10,
d2 = 11,
e2 = 12,
f2 = 13,
g2 = 14,
h2 = 15,
a3 = 16,
b3 = 17,
c3 = 18,
d3 = 19,
e3 = 20,
f3 = 21,
g3 = 22,
h3 = 23,
a4 = 24,
b4 = 25,
c4 = 26,
d4 = 27,
e4 = 28,
f4 = 29,
g4 = 30,
h4 = 31,
a5 = 32,
b5 = 33,
c5 = 34,
d5 = 35,
e5 = 36,
f5 = 37,
g5 = 38,
h5 = 39,
a6 = 40,
b6 = 41,
c6 = 42,
d6 = 43,
e6 = 44,
f6 = 45,
g6 = 46,
h6 = 47,
a7 = 48,
b7 = 49,
c7 = 50,
d7 = 51,
e7 = 52,
f7 = 53,
g7 = 54,
h7 = 55,
a8 = 56,
b8 = 57,
c8 = 58,
d8 = 59,
e8 = 60,
f8 = 61,
g8 = 62,
h8 = 63,
}
}