Basic game using accelerometer and LCD screen. You can move and dodge asteroids coming from both left and right. There is no scoring at the moment.

Dependencies:   C12832 FXOS8700Q mbed-rtos mbed

main.cpp

Committer:
co838_gtvl2
Date:
2016-02-17
Revision:
2:9e0c826103d7
Parent:
1:c6734b909bf0

File content as of revision 2:9e0c826103d7:

#include "Game.h"

int main(void)
{
    Game *g = new Game();
    g->loop();
    delete g;
}