I'm trying to implement collision detection for libgdx actors (player and enemies) without employing Box2D. As I've read Box2D supports inbuilt collision detection, but as my game does not involve any physics in the environment, I'm not comfortable with using Box2D just for that.
Many examples I found enable collision detection by defining a bounding box (Rectangle) for this, but I'm looking for an inbuilt solution.