Hi Leltoson,
Here is one way, to see if the boundaries of a sprite contains the corner of another sprite
if (m_sprite.getGlobalBounds().contains(m_sprite2.getPosition()))
Or better, check if boundry of a sprite intersects wtih a boundry od another sprite:
if (aSprite.getGlobalBounds().intersects(aSprite2.getGlobalBounds()))
{
// apply rest of magic here.
}