https://github.com/the-argus/pyweek31
Cyber Cop Stealing Powers And Stuff! Wow!
https://github.com/the-argus/pyweek31
Last synced: about 1 month ago
JSON representation
Cyber Cop Stealing Powers And Stuff! Wow!
- Host: GitHub
- URL: https://github.com/the-argus/pyweek31
- Owner: the-argus
- Created: 2021-03-28T18:17:39.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-09T00:45:20.000Z (about 4 years ago)
- Last Synced: 2024-04-17T00:02:58.654Z (about 1 year ago)
- Language: Python
- Size: 329 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pyweek31
Cyber Cop Stealing Powers And Stuff! Wow!## Setup
```
python -m venv venv
```Activate the virtual env.
```
pip install -r requirements.txt
```Start the game
```
python run_game.py
```## How To Play
Spacebar to use jetpack. WASD to move. Use the flames from your jetpack to damage enemies.
## Style
For style we use `black` a tool to auto format the code, use it with:
```
black .
```We also sort import with `isort`:
```
isort .
```You can run black after isort in some case the output differ.