SimpleLib_03272011

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers SnakeNode.h Source File

SnakeNode.h

00001 struct SnakeNode
00002 {
00003     public:
00004         SnakeNode(int xC, int yC): x(xC),y(yC){}
00005         SnakeNode * next;
00006     private:
00007         int x, y;
00008 }