Skip to content

Commit d0832f8

Browse files
authored
Fixed outdated comment
1 parent ed6fd4a commit d0832f8

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

Assets/Scripts/Core/Move.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
To preserve memory during search, moves are stored as 16 bit numbers.
33
The format is as follows:
44
5-
bit 0-5: from square (0 to 63)
6-
bit 6-11: to square (0 to 63)
7-
bit 12-13: promotion piece type: rook (0), knight (1), bishop (2), queen (3)
8-
bit 14-15: special move flag: promotion (1), en passant capture (2), castling (3)
5+
bit 0-5: from square (0 to 63)
6+
bit 6-11: to square (0 to 63)
7+
bit 12-15: flag
98
*/
109
namespace Chess {
1110

@@ -110,4 +109,4 @@ public string Name {
110109
}
111110
}
112111
}
113-
}
112+
}

0 commit comments

Comments
 (0)