i want to find out if any Mousebutton is Down. Is there a more elegant way of doing it than this?
If you want to use sf::Mouse there isn't really an alternative, but you could check for the
sf::Event::MouseButtonEvent.
while(window.pollEvent(event)
{
if(event.type == sf::Event::MouseButtonEvent)
// A mouse button has been pressed - Do whatever you like.
}