Game entry for the Game Programming Contest sponsored by OutrageousCircuits.com (RETRO Game Console)

Dependencies:   mbed

Fork of Official_RETRO by GHI Electronics

Committer:
Rogerup
Date:
Sun Mar 01 09:34:29 2015 +0000
Revision:
4:2d41b942a823
Parent:
2:6ab46f2e851a
Game Entry

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
Rogerup 4:2d41b942a823 5 int main()
Rogerup 4:2d41b942a823 6 {
john_ghielec 1:cd8a3926f263 7 Game game;
Rogerup 4:2d41b942a823 8
john_ghielec 2:6ab46f2e851a 9 while (true)
john_ghielec 1:cd8a3926f263 10 game.tick();
john_ghielec 0:21669ea33448 11 }