Nicolas Winkler hace 6 años
padre
commit
3db6cbd8c2
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4 0
      src/search.rs

+ 4 - 0
src/search.rs

@@ -43,3 +43,7 @@ fn negamax(game: &Game, depth: i32) -> i32 {
     }
     return 0;
 }
+
+fn apply_move(game: &Game, mov: Move) -> Game {
+
+}