Files
RobustToolbox/Robust.Shared/Timing/Stopwatch.cs
Silver 25926a17b7 Renames SS14.* to Robust.* (#793)
RobustToolbox projects should be named Robust.* 

This PR changes the RobustToolbox projects from SS14.* to Robust.*

Updates SS14.* prefixes/namespaces to Robust.*
Updates SpaceStation14.sln to RobustToolbox.sln
Updates MSBUILD/SS14.* to MSBUILD/Robust.*
Updates CSProject and MSBuild references for the above
Updates git_helper.py
Removes Runserver and Runclient as they are unusable
2019-04-15 20:24:59 -06:00

44 lines
1.2 KiB
C#

using System;
namespace Robust.Shared.Timing
{
/// <summary>
/// Provides a set of methods and properties that you can use to accurately
/// measure elapsed time.
/// </summary>
public class Stopwatch : IStopwatch
{
private readonly System.Diagnostics.Stopwatch _stopwatch;
/// <summary>
/// Constructs a new instance of this object.
/// </summary>
public Stopwatch()
{
_stopwatch = new System.Diagnostics.Stopwatch();
}
/// <summary>
/// Gets the total elapsed time measured by the current instance.
/// </summary>
public TimeSpan Elapsed => _stopwatch.Elapsed;
/// <summary>
/// Starts, or resumes, measuring elapsed time for an interval.
/// </summary>
public void Start()
{
_stopwatch.Start();
}
/// <summary>
/// Stops time interval measurement, resets the elapsed time to zero,
/// and starts measuring elapsed time.
/// </summary>
public void Restart()
{
_stopwatch.Restart();
}
}
}