Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

IStopWatch.cs 499B

12345678910111213141516171819
  1. namespace Unity.PerformanceTesting.Meters
  2. {
  3. /// <summary>
  4. /// Provides stopwatch functionality for measuring time
  5. /// </summary>
  6. internal interface IStopWatch
  7. {
  8. /// <summary>
  9. /// Resets and starts the stopwatch
  10. /// </summary>
  11. void Start();
  12. /// <summary>
  13. /// Takes a split time since start of stopwatch
  14. /// </summary>
  15. /// <returns>Time passed since start in milliseconds</returns>
  16. double Split();
  17. }
  18. }