Is it possible to make a sf::Thread to a function with more than one parameter?
For example, I want to make a thread that starts the following function:
void func(int A, double B, double C, string D) {}
Not sure if I am overlooking something, but I can only make it if the function has at most one parameter. Such as:
void func(int A) {}
int main()
{
sf::Thread thread(func, A);
}