The original snake game for the mbedgc

Dependencies:   mbed EthernetNetIf HTTPClient

Fork of SimpleLib_03272011 by J.P. Armstrong

Revision:
0:011be8250218
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbedGC/SnakeNode.h	Sat Apr 02 23:23:07 2011 +0000
@@ -0,0 +1,8 @@
+struct SnakeNode
+{
+    public:
+        SnakeNode(int xC, int yC): x(xC),y(yC){}
+        SnakeNode * next;
+    private:
+        int x, y;
+}
\ No newline at end of file