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.

Committer:
maxint
Date:
Thu Jan 15 14:34:59 2015 +0000
Revision:
4:9ad3bc45b6ce
Parent:
2:6ab46f2e851a
mod150115; - Added paddle control using tilting of the console; - Reduced flickering; - Finished mute function

Who changed what in which revision?

UserRevisionLine numberNew contents of line
john_ghielec 0:21669ea33448 1 #include "mbed.h"
john_ghielec 0:21669ea33448 2
john_ghielec 1:cd8a3926f263 3 #include "Game.h"
john_ghielec 0:21669ea33448 4
john_ghielec 0:21669ea33448 5 int main() {
john_ghielec 1:cd8a3926f263 6 Game game;
john_ghielec 1:cd8a3926f263 7
john_ghielec 1:cd8a3926f263 8 game.showSplashScreen();
john_ghielec 0:21669ea33448 9
john_ghielec 2:6ab46f2e851a 10 while (true)
john_ghielec 1:cd8a3926f263 11 game.tick();
john_ghielec 0:21669ea33448 12 }