namespace Unity.PerformanceTesting.Meters { /// /// Provides stopwatch functionality for measuring time /// internal interface IStopWatch { /// /// Resets and starts the stopwatch /// void Start(); /// /// Takes a split time since start of stopwatch /// /// Time passed since start in milliseconds double Split(); } }