My entry for the VimJam2 https://justayte.itch.io/pinmik-panik
Go to file
antux18 da9f88e2b1 Transférer les fichiers vers 'gamedata'
Ajout de la compatibilité macOS : ajout de l'emplacement du fichier de sauvegardes pour les utilisateurs macOS.
2021-10-18 16:25:47 +02:00
gamedata Transférer les fichiers vers 'gamedata' 2021-10-18 16:25:47 +02:00
.gitignore Initial commit 2021-09-10 18:52:02 +02:00
LICENSE Initial commit 2021-09-10 18:52:02 +02:00
README.md Fixed icon 2021-09-20 17:58:09 +02:00
credits.md fixed formulation 2021-09-20 14:16:18 +02:00
icon.ico Fixed icon 2021-09-20 17:58:09 +02:00
launcher.py First commit, engine import 2021-09-10 19:22:30 +02:00

README.md

Pinmik Panik !

My entry for the VimJam2. The requirement was the word "boss", and the theme was "on the edge". An arcade game with little creatures, try to have the best highscore :D

I'll not maintain this repository past the jam's deadline, but feel free to fork it for your own projects.

Also, take a look at the credits file

How I compiled it

Depedencies

I'm using pygame, install it with

pip install pygame

With Linux/Unix

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

With Windows

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