Some random attempts at programming the retro console

Dependencies:   LCD_ST7735 mbed

Fork of RETRO_Pong_Mod by G. Andrew Duthie

Main.cpp

Committer:
loop
Date:
2015-02-28
Revision:
8:c63981a45c95
Parent:
2:6ab46f2e851a
Child:
9:5c4a3e89a713

File content as of revision 8:c63981a45c95:

#include "mbed.h"

#include "Game.h"
#include "MusicEngine.h"
 
 main()
{
    Game game;
        
    game.showSplashScreen();
    
    while (true)
        game.tick();
}