diff options
Diffstat (limited to 'src/SMAPI/Framework/PerformanceCounter/PerformanceCounterEntry.cs')
-rw-r--r-- | src/SMAPI/Framework/PerformanceCounter/PerformanceCounterEntry.cs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/SMAPI/Framework/PerformanceCounter/PerformanceCounterEntry.cs b/src/SMAPI/Framework/PerformanceCounter/PerformanceCounterEntry.cs index 8e156a32..a50fce7d 100644 --- a/src/SMAPI/Framework/PerformanceCounter/PerformanceCounterEntry.cs +++ b/src/SMAPI/Framework/PerformanceCounter/PerformanceCounterEntry.cs @@ -1,10 +1,14 @@ using System; -namespace StardewModdingAPI.Framework.Utilities +namespace StardewModdingAPI.Framework.PerformanceCounter { - public struct PerformanceCounterEntry + /// <summary>A single performance counter entry. Records the DateTime of the event and the elapsed millisecond.</summary> + internal struct PerformanceCounterEntry { + /// <summary>The DateTime when the entry occured.</summary> public DateTime EventTime; - public TimeSpan Elapsed; + + /// <summary>The elapsed milliseconds</summary> + public double ElapsedMilliseconds; } } |