Overflown/README.md

22 lines
531 B
Markdown
Raw Permalink Normal View History

2021-11-16 10:40:37 +01:00
# Overflown
2021-06-25 14:20:52 +02:00
A Platformer centered around water and trash, made for the [Seajam](https://itch.io/jam/seajam).
## How to compile it
The game uses [python](https://www.python.org/) and [pygame](https://www.pygame.org/news).
Here's how to compile it using [pyinstaller](https://www.pyinstaller.org/)
### On Linux/Unix
```bash
pyinstaller --onefile --noconsole launcher.py --add-data "gamedata:gamedata"
```
### On Windows
```bash
pyinstaller launcher.py --onefile --noconsole --add-data "gamedata;gamedata" --icon icon.ico
```