]> git.lizzy.rs Git - nothing.git/commitdiff
(#68) Remove dead code
authorrexim <reximkut@gmail.com>
Sat, 12 May 2018 16:52:34 +0000 (23:52 +0700)
committerrexim <reximkut@gmail.com>
Sat, 12 May 2018 16:52:34 +0000 (23:52 +0700)
src/game/level/boxes.c
src/game/level/boxes.h

index f7a59bf644595d35ce621b6781bd2993107e9459..09ea658599816cf16240830a58637972418c34ba 100644 (file)
@@ -89,10 +89,3 @@ int boxes_update(boxes_t *boxes,
 
     return 0;
 }
-
-int boxes_collide_with_platforms(boxes_t *boxes, platforms_t *platforms)
-{
-    assert(boxes);
-    assert(platforms);
-    return 0;
-}
index 1a1239762bd0fc8776cea387105af6ac1105be95..4945b419203b06d25ce067fbd062e061d1b1eac3 100644 (file)
@@ -11,6 +11,6 @@ void destroy_boxes(boxes_t *boxes);
 
 int boxes_render(boxes_t *boxes, camera_t *camera);
 int boxes_update(boxes_t *boxes, const platforms_t *platforms, float delta_time);
-int boxes_collide_with_platforms(boxes_t *boxes, platforms_t *platforms);
+
 
 #endif  // BOXES_H_