Is there a method in pygame that removes a single sprite from a sprite group by passing it the rect.x and rect.y of the sprite?
Ex: single_sprite has a rect.x of 88 and a rect.y of 112
The method that does something like this: a_sprite_group.remove(88, 112) would remove the single_sprite from the group.
I flipped trough the doc and there doesn't seem to be one.