#nullable disable
namespace StardewModdingAPI.Framework.Events
{
/// Metadata for an event raised by SMAPI.
internal interface IManagedEvent
{
/*********
** Accessors
*********/
/// A human-readable name for the event.
string EventName { get; }
/// Whether the event is typically called at least once per second.
bool IsPerformanceCritical { get; }
}
}