Snake

Dependencies:   mbed

Fork of el17x2l by LI Xiang

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Body.h Source File

Body.h

00001 #ifndef BODY_H
00002 #define BODY_H
00003 
00004 class Body{
00005     public:
00006            Body * next;
00007            int x;
00008            int y;
00009            Body();
00010            Body(int h, int z);
00011 };
00012 
00013 #endif