Change default name so auto generate stops complaining about improper casing.

This commit is contained in:
MidoriKami 2023-09-22 21:12:44 -07:00
parent fd3bd6dc5b
commit c6c28c6e3f

View file

@ -13,9 +13,9 @@ public interface IAddonLifecycle
/// <summary>
/// Delegate for receiving addon lifecycle event messages.
/// </summary>
/// <param name="eventType">The event type that triggered the message.</param>
/// <param name="type">The event type that triggered the message.</param>
/// <param name="args">Information about what addon triggered the message.</param>
public delegate void AddonEventDelegate(AddonEvent eventType, AddonArgs args);
public delegate void AddonEventDelegate(AddonEvent type, AddonArgs args);
/// <summary>
/// Register a listener that will trigger on the specified event and any of the specified addons.