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

FieldCell.cpp

Committer:
RichardE
Date:
2013-06-17
Revision:
18:70190f956a24
Parent:
15:d8ea0c7b7e64

File content as of revision 18:70190f956a24:

/*
 * SOURCE FILE : FieldCell.cpp
 *
 * Definition of class FieldCell.
 *
 */

#include "FieldCell.h"

/***************/
/* CONSTRUCTOR */
/***************/
FieldCell::FieldCell() :
    nextCell( (FieldCell*)NULL )
{
}

/**************/
/* DESTRUCTOR */
/**************/
FieldCell::~FieldCell() {
}