diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-10 23:05:24 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-10 23:05:24 -0400 |
commit | 8c8ec6a4572fd3e59b738fc7545fcddc764f4519 (patch) | |
tree | a6be398e9b23a13672b3ceb98f8055c7cfb5b78d /src/SMAPI/Framework/Events/IManagedEvent.cs | |
parent | eb01aa275b272774c48672a2560455d3fb902a4e (diff) | |
download | SMAPI-8c8ec6a4572fd3e59b738fc7545fcddc764f4519.tar.gz SMAPI-8c8ec6a4572fd3e59b738fc7545fcddc764f4519.tar.bz2 SMAPI-8c8ec6a4572fd3e59b738fc7545fcddc764f4519.zip |
remove unused IsPerformanceCritical event field
Diffstat (limited to 'src/SMAPI/Framework/Events/IManagedEvent.cs')
-rw-r--r-- | src/SMAPI/Framework/Events/IManagedEvent.cs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/SMAPI/Framework/Events/IManagedEvent.cs b/src/SMAPI/Framework/Events/IManagedEvent.cs index e4e3ca08..0ae8c55a 100644 --- a/src/SMAPI/Framework/Events/IManagedEvent.cs +++ b/src/SMAPI/Framework/Events/IManagedEvent.cs @@ -8,8 +8,5 @@ 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; } } } |