Files

19 lines
496 B
C#
Raw Permalink Normal View History

2026-01-08 16:50:20 +00:00
namespace Unity.PerformanceTesting.Meters
{
/// <summary>
/// Provides stopwatch functionality for measuring time
/// </summary>
internal interface IStopWatch
{
/// <summary>
/// Resets and starts the stopwatch
/// </summary>
void Start();
/// <summary>
/// Takes a split time since start of stopwatch
/// </summary>
/// <returns>Time passed since start in milliseconds</returns>
double Split();
}
}