Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binny3213/checkersconsolegame
Checkers game implemented in C# to console application.
https://github.com/binny3213/checkersconsolegame
csharp dotnet game-development project
Last synced: 4 days ago
JSON representation
Checkers game implemented in C# to console application.
- Host: GitHub
- URL: https://github.com/binny3213/checkersconsolegame
- Owner: binny3213
- Created: 2025-01-03T19:00:22.000Z (7 days ago)
- Default Branch: main
- Last Pushed: 2025-01-03T19:11:27.000Z (7 days ago)
- Last Synced: 2025-01-03T20:21:03.670Z (7 days ago)
- Topics: csharp, dotnet, game-development, project
- Language: C#
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Checkers-Console-interface-Game
Checkers game implemented in C# at .NET framework to console application.
pick a board size (6 x 6 , 8 x 8 , 10 x 10)
enter your player's name
choose playing against another player or against the computer
The player makes his move by the format: ROWcol>ROWcol (for example in the picture below: Dg>Ef).
![image](https://github.com/user-attachments/assets/2e840dcd-a301-47bb-999d-3262759241ff)
The O's kings are marked with 'U', and The X's kings are marked with 'K'.
At any point, the user can quit the game by entering 'Q' instead of a valid move.
Each round is over when there are no more checkers on board for some player,
or when there are no more legal moves for both players.score is calculated in each round's end as the difference between the players' remaining checkers on board
(regular checker = 1 points ; king = 4 points) and is granted to the winner,
or to both players if round ends with a tie.# Enjoy the game!
### Tools, Framework and language