blob: 2a481f4dcf2d51d6e326364e9092783d145389ec (
plain)
1
2
3
4
5
6
7
8
9
|
#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_
|