summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/PerformanceCounter/PerformanceCounterEntry.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Framework/PerformanceCounter/PerformanceCounterEntry.cs')
-rw-r--r--src/SMAPI/Framework/PerformanceCounter/PerformanceCounterEntry.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/SMAPI/Framework/PerformanceCounter/PerformanceCounterEntry.cs b/src/SMAPI/Framework/PerformanceCounter/PerformanceCounterEntry.cs
new file mode 100644
index 00000000..8e156a32
--- /dev/null
+++ b/src/SMAPI/Framework/PerformanceCounter/PerformanceCounterEntry.cs
@@ -0,0 +1,10 @@
+using System;
+
+namespace StardewModdingAPI.Framework.Utilities
+{
+ public struct PerformanceCounterEntry
+ {
+ public DateTime EventTime;
+ public TimeSpan Elapsed;
+ }
+}