simple Asteroid game. Goal: it's not about making Asteroid game but to learn
- multi-file project
- OOP
# 1) Clone the repository
git clone https://github.com/defau1tuser0/Asteroids
cd <your-repo>
# 2) (Optional) Create a virtual environment
python -m venv .venv
# Windows:
.venv\Scripts\activate
# macOS/Linux:
source .venv/bin/activate
# 3) Install dependencies
pip install -r requirements.txt
# 4) Run
python3 main.py