I can't get rid of the following thing... When I try to make a member for my class like this:
sf::Thread ListenThread;
I can't declare it like this somewhere else:
sf::Thread ListenThread(&CMultiplayer::Listen, &Multiplayer);
At the window class, for example, there is a member create() to initalize it. So why it isn't here? I am proberly doing something stupid...