Platform game written for the GHI/OutrageousCircuits RETRO game device. Navigate the caves collecting all the pickups and avoiding the creatures and haunted mine carts that patrol the caves. Oh and remember to watch out for the poisonous plants... This game demonstrates the ability to have multiple animated sprites where the sprites can overlap the background environment. See how the player moves past the fence and climbs the wall in the 3rd screen.

Dependencies:   mbed

Revision:
14:b4884a31069e
Parent:
9:34008d8b1cdf
Child:
16:f9227904afc4
--- a/main.cpp	Mon Feb 16 01:51:03 2015 +0000
+++ b/main.cpp	Mon Feb 16 02:35:14 2015 +0000
@@ -96,10 +96,11 @@
         bool _intro;
 };
 
-MyGame game;
+
 
 int main()
 {               
+    MyGame game;
     game.run();
 }