Some random attempts at programming the retro console

Dependencies:   LCD_ST7735 mbed

Fork of RETRO_Pong_Mod by G. Andrew Duthie

Revision:
9:5c4a3e89a713
Parent:
8:c63981a45c95
--- a/Main.cpp	Sat Feb 28 00:04:52 2015 +0000
+++ b/Main.cpp	Sat Feb 28 14:46:09 2015 +0000
@@ -1,14 +1,10 @@
 #include "mbed.h"
 
 #include "Game.h"
-#include "MusicEngine.h"
- 
- main()
-{
+
+ int main() {
     Game game;
-        
     game.showSplashScreen();
-    
     while (true)
         game.tick();
-}
\ No newline at end of file
+}