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()