namespace StardewModdingAPI.Events
{
/// Represents a method that will handle a content event.
/// The source of the event.
/// The event arguments.
/// This deviates from in allowing T to be an interface instead of a concrete class. While .NET Framework 4.5 allows that, the current .NET Framework 4.0 targeted by SMAPI to improve compatibility does not.
public delegate void ContentEventHandler(object sender, IContentEventHelper e);
}