소스 검색

apply move

Nicolas Winkler 6 년 전
부모
커밋
3db6cbd8c2
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  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 {
+
+}