Hi!
does sf::Time stores an static point of time from clock or it is constantly taking the time from clock?...
example:
sf::Clock clk;
//do some things
sf::Time t0 = clk.getElapsedTime(); //N0
//... do some other things that take a while
std::cout << t0.asSeconds(); //N1
N0: lets suppose here the time is 0.002
N1: does t0 is the same time point as before or it will print a later value?.. for instance 0.01
Oh yeah!!.. i have tried it on my own... but stdout prints an e+10 very large number...
Thanks