From 4fa05292dfa151232f233c6d39f70277346fef91 Mon Sep 17 00:00:00 2001 From: bonjohen <52156146+bonjohen@users.noreply.github.com> Date: Wed, 9 Sep 2020 19:46:10 -0700 Subject: [PATCH] Update main.py JRB: I have no minimax to import... Looking forward to seeing your implementation, though :) --- main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 5d5b1b9..c3c7406 100644 --- a/main.py +++ b/main.py @@ -2,7 +2,8 @@ import pygame from checkers.constants import WIDTH, HEIGHT, SQUARE_SIZE, RED from checkers.game import Game -from minimax.algorithm import minimax +# placeholder for new algorithm! +# from minimax.algorithm import minimax FPS = 60 @@ -40,4 +41,4 @@ def main(): pygame.quit() -main() \ No newline at end of file +main()