fix typescript build

This commit is contained in:
2020-02-10 23:48:57 +02:00
parent a270071cc3
commit d982ee5ba0

View File

@@ -34,7 +34,7 @@ class AI {
}
private getPossibleMoves(game: Game): Game[] {
const moves = [];
const moves: Game[] = [];
let move: Game;
for (let i = 0; i < 3; i++) {