My first Python project using the Pygame Library, coding the game - Checkers!
The checkers game is split into five different files:
- configutaion.py - holds all the components and the configurations
- piece.py - all the info regarding each piece is stored using the Piece class + drawing the pieces into the board and crowning functions
- board.py - the Board class is in charge of creating and drawing the board
- player.py - As the name impleis the Player class holds all the functions that are related to making the moves
- chekers.py - The main file that makes it possible for us to play the checkers game with GUI using the Game class
pipenv install --dev
pipenv run python chekers.py