The original snake game for the mbedgc

Dependencies:   mbed EthernetNetIf HTTPClient

Fork of SimpleLib_03272011 by J.P. Armstrong

mbedGC/SnakeNode.h

Committer:
jp
Date:
2011-04-02
Revision:
0:011be8250218

File content as of revision 0:011be8250218:

struct SnakeNode
{
    public:
        SnakeNode(int xC, int yC): x(xC),y(yC){}
        SnakeNode * next;
    private:
        int x, y;
}