diff options
author | Drachenkaetzchen <felicia@drachenkatze.org> | 2020-01-10 14:08:25 +0100 |
---|---|---|
committer | Drachenkaetzchen <felicia@drachenkatze.org> | 2020-01-10 14:08:25 +0100 |
commit | 47f626cc99c93a28b2d6867ed6cc717b39ec062c (patch) | |
tree | 475d30d1d7a269c3f27a5c7d2bdca29dbc7e0bde /src/SMAPI/Framework/Utilities/PerformanceCounterEntry.cs | |
parent | a751252c4ee3b48977d5d24c36a4e4e5466f93db (diff) | |
download | SMAPI-47f626cc99c93a28b2d6867ed6cc717b39ec062c.tar.gz SMAPI-47f626cc99c93a28b2d6867ed6cc717b39ec062c.tar.bz2 SMAPI-47f626cc99c93a28b2d6867ed6cc717b39ec062c.zip |
Moved most PerformanceCounter logic out of SCore into the new PerformanceCounterManager, some namespace refactoring
Diffstat (limited to 'src/SMAPI/Framework/Utilities/PerformanceCounterEntry.cs')
-rw-r--r-- | src/SMAPI/Framework/Utilities/PerformanceCounterEntry.cs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/SMAPI/Framework/Utilities/PerformanceCounterEntry.cs b/src/SMAPI/Framework/Utilities/PerformanceCounterEntry.cs deleted file mode 100644 index 8e156a32..00000000 --- a/src/SMAPI/Framework/Utilities/PerformanceCounterEntry.cs +++ /dev/null @@ -1,10 +0,0 @@ -using System; - -namespace StardewModdingAPI.Framework.Utilities -{ - public struct PerformanceCounterEntry - { - public DateTime EventTime; - public TimeSpan Elapsed; - } -} |