void GSleep
{
sf::Clock clock;
sf::Time time = sf::seconds(0);
while(x > time)
{
time = clock.getElapsedTime();
}
}
This function was created to make the game wait for a certain amount of time before carrying out the next order. Unfortunately, this causes the entire game to freeze until it is done waiting. I only want it to prevent the next line of code from happening until it is done. Thanks.