From 877a24d6b4dfa8e0c6a1d0f61218323ee84c136a Mon Sep 17 00:00:00 2001 From: milanjaeckel Date: Sun, 17 May 2026 20:03:59 +0200 Subject: [PATCH] added sources and file structure to readme.md --- readme.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 6b7bf5a..45e5a38 100644 --- a/readme.md +++ b/readme.md @@ -43,12 +43,17 @@ The main loop handles three things: listening for the quit event, clearing and r ``` chess-game/ +├── pieces + └── pieces.png (multiple) +├── board.py ├── main.py └── README.md ``` ## Sources -- [Pygame — Import and Initialization](https://www.pygame.org/docs/tut/ImportInit.html) -- [GeeksforGeeks — How to Draw a Rectangle in Pygame](https://www.geeksforgeeks.org/python/how-to-draw-rectangle-in-pygame/) -- [Blender Stack Exchange — Toggle a Boolean Property](https://blender.stackexchange.com/questions/23040/how-to-easily-toggle-a-boolean-property) +- [Pygame - Import and Initialization](https://www.pygame.org/docs/tut/ImportInit.html) +- [GeeksforGeeks - How to Draw a Rectangle in Pygame](https://www.geeksforgeeks.org/python/how-to-draw-rectangle-in-pygame/) +- [Blender Stack Exchange - Toggle a Boolean Property](https://blender.stackexchange.com/questions/23040/how-to-easily-toggle-a-boolean-property) +- [StackOverflow - How to call function from another .py file](https://stackoverflow.com/questions/20309456/how-do-i-call-a-function-from-another-py-file) +- [GeeksforGeeks - Create a chess game in python](https://www.geeksforgeeks.org/python/create-a-chess-game-in-python/)