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:
john_ghielec
Date:
Mon Nov 17 19:51:24 2014 +0000
Revision:
1:cd8a3926f263
Parent:
0:21669ea33448
Child:
2:6ab46f2e851a
Split game logic out into a game file.

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 0:21669ea33448 10 while (true) {
john_ghielec 1:cd8a3926f263 11 game.tick();
john_ghielec 0:21669ea33448 12
john_ghielec 1:cd8a3926f263 13 wait_ms(25);
john_ghielec 0:21669ea33448 14 }
john_ghielec 0:21669ea33448 15 }