summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/PerformanceCounter/IPerformanceCounterEvent.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Framework/PerformanceCounter/IPerformanceCounterEvent.cs')
-rw-r--r--src/SMAPI/Framework/PerformanceCounter/IPerformanceCounterEvent.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/SMAPI/Framework/PerformanceCounter/IPerformanceCounterEvent.cs b/src/SMAPI/Framework/PerformanceCounter/IPerformanceCounterEvent.cs
deleted file mode 100644
index 1bcf4fa0..00000000
--- a/src/SMAPI/Framework/PerformanceCounter/IPerformanceCounterEvent.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace StardewModdingAPI.Framework.Utilities
-{
- public interface IPerformanceCounterEvent
- {
- string GetEventName();
- long GetAverageCallsPerSecond();
-
- double GetGameAverageExecutionTime();
- double GetModsAverageExecutionTime();
- double GetAverageExecutionTime();
- }
-}