h                   7 object.c       object* newobject(int w, int h, char* shape){
h                  12 object.c         ret->size.y = h;
h                  13 object.c         ret->shape = (char*)malloc(sizeof(char)*w*h);
h                  14 object.c         strncpy(ret->shape, shape, w*h);
h                  26 object.c         int h = obj->size.y;
h                  27 object.c         for(i=0;i<h;i++){
h                  12 object.h       object* newobject(int w, int h, char* shape);