| 64 | } |
| 65 | |
| 66 | void TimeManager::setForegroundThreshold(const S32 msInterval) |
| 67 | { |
| 68 | AssertFatal(msInterval > 0, "TimeManager::setForegroundThreshold - should have at least 1 ms between time events to avoid math problems!"); |
| 69 | mForegroundThreshold = msInterval; |
| 70 | } |
| 71 | |
| 72 | const S32 TimeManager::getForegroundThreshold() const |
| 73 | { |