minesweeper_game/Library/PackageCache/com.unity.test-framework.performance@fb0dc592af8b/Runtime/Meters/IStopWatch.cs
2025-03-15 14:30:26 -04:00

19 lines
499 B
C#

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();
}
}