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

Dependencies:   mbed

Fork of Official_RETRO by GHI Electronics

Main.cpp

Committer:
Rogerup
Date:
2015-03-01
Revision:
4:2d41b942a823
Parent:
2:6ab46f2e851a

File content as of revision 4:2d41b942a823:

#include "mbed.h"

#include "Game.h"

int main()
{
    Game game;

    while (true)
        game.tick();
}