Some random attempts at programming the retro console

Dependencies:   LCD_ST7735 mbed

Fork of RETRO_Pong_Mod by G. Andrew Duthie

Main.cpp

Committer:
john_ghielec
Date:
2014-11-21
Revision:
2:6ab46f2e851a
Parent:
1:cd8a3926f263
Child:
8:c63981a45c95

File content as of revision 2:6ab46f2e851a:

#include "mbed.h"

#include "Game.h"

int main() {
    Game game;
        
    game.showSplashScreen();
    
    while (true)
        game.tick();
}