template<typename F >
sf::Thread::Thread ( F function )
Construct the thread from a functor with no argument.
This constructor works for function objects, as well as free function.
Use this constructor for this kind of function:
void function();
// --- or ----
struct Functor
{
void operator()();
};
Note: this does not run the thread, use Launch().
what does the last line mean?