Platformer made using pygame, centered around water and trash https://justayte.itch.io/overflown
Go to file
theo@manjaro 2773ae5a54 Updated README to include .ico file in Pyinstaller's instruction 2021-12-19 14:31:04 +01:00
gamedata Avoid killing two times the same ennemy 2021-12-07 22:23:10 +01:00
.gitignore Initial commit 2021-06-25 14:20:52 +02:00
CREDITS.md Added myself to the credits 2021-11-28 18:12:59 +01:00
LICENSE Initial commit 2021-06-25 14:20:52 +02:00
README.md Updated README to include .ico file in Pyinstaller's instruction 2021-12-19 14:31:04 +01:00
icon.ico Updated README to include .ico file in Pyinstaller's instruction 2021-12-19 14:31:04 +01:00
launcher.py Premier commit 2021-06-25 14:42:35 +02:00

README.md

Overflown

A Platformer centered around water and trash, made for the Seajam.

How to compile it

The game uses python and pygame.

Here's how to compile it using pyinstaller

On Linux/Unix

pyinstaller --onefile --noconsole launcher.py --add-data "gamedata:gamedata"

On Windows

pyinstaller launcher.py --onefile --noconsole --add-data "gamedata;gamedata" --icon icon.ico