From 625d9e0514782a9b8ff922f41800c2a32ad14b61 Mon Sep 17 00:00:00 2001 From: gered Date: Mon, 30 Sep 2013 03:22:23 -0400 Subject: [PATCH] checkForCollisions should return a boolean to simply indicate if a collision was found or not --- src/com/blarg/gdx/math/SweptSphereWorldCollisionChecker.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/blarg/gdx/math/SweptSphereWorldCollisionChecker.java b/src/com/blarg/gdx/math/SweptSphereWorldCollisionChecker.java index d2d110c..a912fc1 100644 --- a/src/com/blarg/gdx/math/SweptSphereWorldCollisionChecker.java +++ b/src/com/blarg/gdx/math/SweptSphereWorldCollisionChecker.java @@ -3,5 +3,5 @@ package com.blarg.gdx.math; import com.badlogic.gdx.math.collision.BoundingBox; public interface SweptSphereWorldCollisionChecker { - void checkForCollisions(SweptSphere sphere, BoundingBox possibleCollisionArea); + boolean checkForCollisions(SweptSphere sphere, BoundingBox possibleCollisionArea); }