new mods upon mods by devhammer: - Added paddle control using tilting of the console - Finished mute function - Reduced flickering See game.cpp for full info.

Dependencies:   mbed

Fork of RETRO_Pong_Mod by G. Andrew Duthie

This is a mod of the official Pong game released with the RETRO game console.

Main.cpp

Committer:
john_ghielec
Date:
2014-11-17
Revision:
1:cd8a3926f263
Parent:
0:21669ea33448
Child:
2:6ab46f2e851a

File content as of revision 1:cd8a3926f263:

#include "mbed.h"

#include "Game.h"

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