Android Bitmap: Collision Detecting
- by Aekasitt Guruvanich
I am writing an Android game right now and I would need some help in the collision of the Pawns on screen. I figured I could run a for loop on the Player class with all Pawn objects on the screen checking whether or not Width*Height intersects with each other, but is there a more efficient way to do this?
And if you do it this way, many of the…