diff options
Diffstat (limited to 'src/SMAPI/Framework/PerformanceCounter/EventPerformanceCounterCollection.cs')
-rw-r--r-- | src/SMAPI/Framework/PerformanceCounter/EventPerformanceCounterCollection.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/SMAPI/Framework/PerformanceCounter/EventPerformanceCounterCollection.cs b/src/SMAPI/Framework/PerformanceCounter/EventPerformanceCounterCollection.cs index 1aec28f3..4690c512 100644 --- a/src/SMAPI/Framework/PerformanceCounter/EventPerformanceCounterCollection.cs +++ b/src/SMAPI/Framework/PerformanceCounter/EventPerformanceCounterCollection.cs @@ -2,8 +2,13 @@ using StardewModdingAPI.Framework.Events; namespace StardewModdingAPI.Framework.PerformanceCounter { + /// <summary>Represents a performance counter collection specific to game events.</summary> internal class EventPerformanceCounterCollection: PerformanceCounterCollection { + /// <summary>Creates a new event performance counter collection.</summary> + /// <param name="manager">The performance counter manager.</param> + /// <param name="event">The ManagedEvent.</param> + /// <param name="isImportant">If the event is flagged as important.</param> public EventPerformanceCounterCollection(PerformanceCounterManager manager, IManagedEvent @event, bool isImportant) : base(manager, @event.GetName(), isImportant) { } |