Skip to content

Commit

Permalink
Change default name so auto generate stops complaining about improper…
Browse files Browse the repository at this point in the history
… casing.
  • Loading branch information
MidoriKami committed Sep 23, 2023
1 parent fd3bd6d commit c6c28c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dalamud/Plugin/Services/IAddonLifecycle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit c6c28c6

Please sign in to comment.