A simple Snake game built using Python and Pygame.
- Snake movement (WASD)
- Food and score system
- Self collision
- Wrapping around world
- Game over screen
- Restart with ENTER
- Quit with window close button
for running with virtual environment(optional but recommended)----
-----------
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
python main.py
for running without virtual environment----
------------
pip install -r requirements.txt
python main.py