(Sprite other)
| 109 | |
| 110 | /// Returns true if this sprite's bounding box intersects the other's. |
| 111 | public boolean intersects(Sprite other) { |
| 112 | return getBounds().intersects(other.getBounds()); |
| 113 | } |
| 114 | |
| 115 | // ---- PhysicsLinkable ------------------------------------------------- |
| 116 |