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

Dependencies:   PokittoLib

Fork of Asterocks by Pokitto Community Team

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "Pokitto.h"
00002 //#include "Gamebuino.h"
00003 
00004 Pokitto::Core g;
00005 
00006 int main()
00007 {
00008 
00009     //pokInitSD();
00010     /*if (!isThisFileOpen("WOLF.SND")) {
00011         fileClose(); // close any open files
00012         fileOpen("WOLF.SND",FILE_MODE_OVERWRITE | FILE_MODE_BINARY);
00013     }*/
00014 
00015     setup();
00016 
00017     while(g.isRunning())
00018     {
00019         loop();
00020     }
00021 }
00022 
00023 
00024