summaryrefslogtreecommitdiffhomepage
path: root/src/wall.h
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2023-05-27 16:36:22 -0400
committerrealtradam <[email protected]>2023-05-27 16:36:22 -0400
commit3a52c0738c3616b6974f0c979086ee1ca215ae08 (patch)
treecffbe148870047445577ec25f6b3504355c92e4e /src/wall.h
parent960fcfeb01626555ddb464c306c85e1f295d1d42 (diff)
parentcbef4cf94b342df7a5fe3768caf392b5b8a82eaf (diff)
downloadTOJam2023-3a52c0738c3616b6974f0c979086ee1ca215ae08.tar.gz
TOJam2023-3a52c0738c3616b6974f0c979086ee1ca215ae08.zip
Merge branch 'master' of github.com:realtradam/TOJam2023
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
+);