Added operator for division of two sf::Time objects

This commit is contained in:
Jan Haller 2013-08-21 12:12:34 +02:00
parent 5f4257187e
commit 6cf30e1751
2 changed files with 19 additions and 0 deletions

View file

@ -237,6 +237,13 @@ Time& operator /=(Time& left, Int64 right)
}
////////////////////////////////////////////////////////////
float operator /(Time left, Time right)
{
return left.asSeconds() / right.asSeconds();
}
////////////////////////////////////////////////////////////
Time operator %(Time left, Time right)
{