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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Main.cpp Source File

Main.cpp

00001 #include "mbed.h"
00002 
00003 #include "Game.h"
00004 
00005 int main() {
00006     Game game;
00007         
00008     game.showSplashScreen();
00009     
00010     while (true)
00011         game.tick();
00012 }