summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/Events/IManagedEvent.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Framework/Events/IManagedEvent.cs')
-rw-r--r--src/SMAPI/Framework/Events/IManagedEvent.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI/Framework/Events/IManagedEvent.cs b/src/SMAPI/Framework/Events/IManagedEvent.cs
index e4e3ca08..55994c04 100644
--- a/src/SMAPI/Framework/Events/IManagedEvent.cs
+++ b/src/SMAPI/Framework/Events/IManagedEvent.cs
@@ -9,7 +9,7 @@ namespace StardewModdingAPI.Framework.Events
/// <summary>A human-readable name for the event.</summary>
string EventName { get; }
- /// <summary>Whether the event is typically called at least once per second.</summary>
- bool IsPerformanceCritical { get; }
+ /// <summary>Whether any handlers are listening to the event.</summary>
+ bool HasListeners { get; }
}
}