#ifndef WALL_H_ #define WALL_H_ #include "entity.h" void add_wall(float xpos, float ypos, float width, float height); void draw_wall(const struct entity* wall); #endif // WALL_H_