Retro game that let's the player steer a ball through a hole filled maze. Has multiple levels of increasing difficulty.

Dependencies:   LCD_ST7735 MusicEngine RETRO_BallsAndThings mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Main.cpp Source File

Main.cpp

00001 #include "mbed.h"
00002 
00003 #include "Game.h"
00004 
00005 int main() {
00006     Game game;
00007         
00008     game.showSplashScreen();
00009     
00010     while (true)
00011         game.tick();
00012 }