Snake

Dependencies:   mbed

Fork of el17x2l by LI Xiang

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Body.cpp Source File

Body.cpp

00001 #include "Body.h"
00002 
00003 Body::Body(){
00004     next = 0;
00005 }
00006 
00007 Body::Body(int h,int z){
00008     next = 0, x=h, y=z;
00009 }