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

Direction4.h

Committer:
RichardE
Date:
2013-06-17
Revision:
18:70190f956a24
Parent:
8:82d88f9381f3

File content as of revision 18:70190f956a24:

/*
 * SOURCE FILE : Direction4.h
 *
 * Definition of enumeration Direction4.
 *
 */

#ifndef Direction4Defined

  #define Direction4Defined

    enum Direction4 {
        UpDir4,
        RightDir4,
        DownDir4,
        LeftDir4,
    };

#endif

/* END of Direction4.h */