summaryrefslogtreecommitdiffhomepage
path: root/src/wall.h
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2023-06-06 06:39:09 -0400
committerrealtradam <[email protected]>2023-06-06 06:39:09 -0400
commit6c2a5968c27bffe4233be55d13ce01c63ab292ef (patch)
treeeea32374c41eae9f1d6c8baa8cd103ead453eeaf /src/wall.h
parentd40893aa03f75d68c8770823b9eb96847dd16426 (diff)
downloadrodeo_sample_game-6c2a5968c27bffe4233be55d13ce01c63ab292ef.tar.gz
rodeo_sample_game-6c2a5968c27bffe4233be55d13ce01c63ab292ef.zip
complete most of the rodeo kit rewrite to avoid exposed pointers
Diffstat (limited to 'src/wall.h')
-rw-r--r--src/wall.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wall.h b/src/wall.h
index 945bc46..90e3ec6 100644
--- a/src/wall.h
+++ b/src/wall.h
@@ -12,10 +12,10 @@ deinit_wall(void);
deinit_wall() \
)
-rodeo_collision_2d_world_t *
+rodeo_collision_2d_collection_t
get_wall_world(void);
-rodeo_collision_2d_world_item_t *
+rodeo_collision_2d_item_t
new_wall(
float x,
float y,
@@ -31,8 +31,8 @@ coords_inside_wall(
void
moving_wall_resolver(
- rodeo_collision_2d_world_item_t *obj_collision,
- rodeo_collision_2d_world_item_t *wall_collision
+ rodeo_collision_2d_item_data_t *obj_collision,
+ rodeo_collision_2d_item_data_t *wall_collision
);
void