#ifndef _H_PIPE #define _H_PIPE #include #include "config.h" typedef struct { int pos_x; int pos_y; int height; } pipe; pipe* pipe_create(); void pipe_destroy(pipe* p); #endif