summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/PerformanceCounter/EventPerformanceCounterCollection.cs
blob: 1aec28f34c50c261881f829ab18319412b57de08 (plain)
1
2
3
4
5
6
7
8
9
10
11
using StardewModdingAPI.Framework.Events;

namespace StardewModdingAPI.Framework.PerformanceCounter
{
    internal class EventPerformanceCounterCollection: PerformanceCounterCollection
    {
        public EventPerformanceCounterCollection(PerformanceCounterManager manager, IManagedEvent @event, bool isImportant) : base(manager, @event.GetName(), isImportant)
        {
        }
    }
}