Hungry Shapes is a fast-paced reflex-based arcade game built with Python's Turtle module. Control a paddle to catch falling shapes — some will boost your score, some will end your game instantly!
📝 Two different moments from gameplay
- Move the paddle left and right using arrow keys.
- Catch colorful shapes to gain points:
- ⚫ Circle = +1 point
- 🟩 Square = +2 points
- 🐢 Turtle = +3 points
- 🔺 Triangle = Resets your score
- White shape = Instant game over
- The game becomes more challenging as your score increases.
- High score is saved and displayed.
main.py: The main game loop and shape managementpaddle.py: Controls the paddle's movementshapes.py: Handles falling shapes, sizes, colors, and random behaviorscore.py: Score tracking and high score logichighscore.txt: Stores the highest score between sessions
- Make sure you have Python installed.
- Run
main.pyfrom any Python IDE or terminal.

