summaryrefslogtreecommitdiffhomepage
path: root/src/wall.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wall.h')
-rw-r--r--src/wall.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/wall.h b/src/wall.h
new file mode 100644
index 0000000..7b0f9fe
--- /dev/null
+++ b/src/wall.h
@@ -0,0 +1,18 @@
+#include "rodeo/collision.h"
+
+void
+init_wall(void);
+
+void
+deinit_wall(void);
+
+rodeo_collision_2d_world_t *
+get_wall_world(void);
+
+rodeo_collision_2d_world_item_t *
+new_wall(
+ float x,
+ float y,
+ float width,
+ float height
+);