Great game by Aurelién Rodot for Gamebuin. Ported by Jonne

Dependencies:   PokittoLib

Fork of Asterocks by Pokitto Community Team

Committer:
Pokitto
Date:
Wed May 02 06:31:17 2018 +0000
Revision:
13:9bf683c077df
Parent:
5:42a7d8c6c8fd
New pokittolib with improved volume controls & better button handling

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Pokitto 0:2d2a3994d55d 1 #include "Pokitto.h"
Pokitto 5:42a7d8c6c8fd 2 //#include "Gamebuino.h"
Pokitto 0:2d2a3994d55d 3
Pokitto 5:42a7d8c6c8fd 4 Pokitto::Core g;
Pokitto 4:46e28b959b54 5
Pokitto 4:46e28b959b54 6 int main()
Pokitto 4:46e28b959b54 7 {
Pokitto 5:42a7d8c6c8fd 8
Pokitto 5:42a7d8c6c8fd 9 //pokInitSD();
Pokitto 5:42a7d8c6c8fd 10 /*if (!isThisFileOpen("WOLF.SND")) {
Pokitto 5:42a7d8c6c8fd 11 fileClose(); // close any open files
Pokitto 5:42a7d8c6c8fd 12 fileOpen("WOLF.SND",FILE_MODE_OVERWRITE | FILE_MODE_BINARY);
Pokitto 5:42a7d8c6c8fd 13 }*/
Pokitto 4:46e28b959b54 14
Pokitto 4:46e28b959b54 15 setup();
Pokitto 0:2d2a3994d55d 16
Pokitto 5:42a7d8c6c8fd 17 while(g.isRunning())
Pokitto 4:46e28b959b54 18 {
Pokitto 4:46e28b959b54 19 loop();
Pokitto 4:46e28b959b54 20 }
Pokitto 4:46e28b959b54 21 }
Pokitto 4:46e28b959b54 22
Pokitto 4:46e28b959b54 23
Pokitto 4:46e28b959b54 24