Organize funcs from main.py into subclasses in board.py or make new classes. Once this is done we can create a main() in main.py to call a wrapper function to start the checkers game.
Make a Visual() class to handle all the terminal visuals and remove them from the Board()
Put the respective Piece & GameBoard Logic from main.py into their subclasses in board.py
Make Turn() class with the Turn Logic funcs from main.py
Wrap Checkers_Board().board_setup and make private. Then use public wrapper to start game
Organize funcs from main.py into subclasses in board.py or make new classes. Once this is done we can create a main() in main.py to call a wrapper function to start the checkers game.