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

Dependencies:   PokittoLib

Fork of Asterocks by Pokitto Community Team

Revision:
4:46e28b959b54
Parent:
0:2d2a3994d55d
Child:
5:42a7d8c6c8fd
--- a/main.cpp	Wed Oct 11 23:03:48 2017 +0000
+++ b/main.cpp	Thu Oct 12 10:45:15 2017 +0000
@@ -1,13 +1,18 @@
 #include "Pokitto.h"
 
-Pokitto::Core mygame;
+Pokitto::Core aster;
+
+int main()
+{
+    aster.begin();
+
+    setup();
 
-int main () {
-    mygame.begin();
-    while (mygame.isRunning()) {
-        if (mygame.update()) {            
-            mygame.display.print("I feel good!!");
-            } 
-        }    
-    
-}
\ No newline at end of file
+    while( aster.isRunning() )
+    {
+        loop();
+    }
+}
+
+
+