From 47f626cc99c93a28b2d6867ed6cc717b39ec062c Mon Sep 17 00:00:00 2001 From: Drachenkaetzchen Date: Fri, 10 Jan 2020 14:08:25 +0100 Subject: Moved most PerformanceCounter logic out of SCore into the new PerformanceCounterManager, some namespace refactoring --- .../Framework/Utilities/IPerformanceCounterEvent.cs | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/SMAPI/Framework/Utilities/IPerformanceCounterEvent.cs (limited to 'src/SMAPI/Framework/Utilities/IPerformanceCounterEvent.cs') diff --git a/src/SMAPI/Framework/Utilities/IPerformanceCounterEvent.cs b/src/SMAPI/Framework/Utilities/IPerformanceCounterEvent.cs deleted file mode 100644 index 55302f90..00000000 --- a/src/SMAPI/Framework/Utilities/IPerformanceCounterEvent.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace StardewModdingAPI.Framework.Utilities -{ - public interface IPerformanceCounterEvent - { - string GetEventName(); - long GetAverageCallsPerSecond(); - IDictionary PerformanceCounters { get; } - - double GetGameAverageExecutionTime(); - double GetModsAverageExecutionTime(); - double GetAverageExecutionTime(); - } -} -- cgit