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:
10:ba2dea5fffd1
Parent:
9:5c4a3e89a713

File content as of revision 10:ba2dea5fffd1:

#include "mbed.h"

#include "Game.h"

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