22 lines
515 B
Markdown
22 lines
515 B
Markdown
# Overflown
|
|
|
|
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 --onefile --noconsole launcher.py --add-data "gamedata;gamedata"
|
|
```
|