Ejemplo n.º 1
0
void Timer::setSeconds(double seconds_in) 
{
	setMilliseconds((long)(seconds_in*1000.0));
}
Ejemplo n.º 2
0
void Time::addSeconds(float secondsToAdd)
{
    setMilliseconds(secondsToAdd + getExactSeconds());
}