Version of Robotron arcade game using LPC1768, a Gameduino shield, a serial EEPROM (for high scores), two microswitch joysticks and two buttons plus a box to put it in. 20 levels of mayhem.

Dependencies:   25LCxxx_SPI CommonTypes Gameduino mbed

main.cpp

Committer:
RichardE
Date:
2013-06-17
Revision:
18:70190f956a24
Parent:
0:5fa232ee5fdf

File content as of revision 18:70190f956a24:

/*
 * SOURCE FILE : main.cpp
 *
 * Main program for the RobotRic game. Uses the Gameduino board (for Arduino) to generate graphics and sound.
 *
 */

#include "mbed.h"
#include "GameRobotRic.h"           // RobotRic game object

/**
  * Main program.
  * Never returns.
  */
int main() {
    // Create an instance of the game and then play it.
    // Play method never exits.
    GameRobotRic game;
    game.Play();
    return 0;
}