AddonLifecycle Add AddonReceiveEvent (#1473)

This commit is contained in:
MidoriKami 2023-10-09 13:10:49 -07:00 committed by GitHub
parent 8be1e4b8ef
commit d15e35f3f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 145 additions and 6 deletions

View file

@ -59,4 +59,14 @@ public enum AddonEvent
/// Event that is fired after an addon has finished a refresh.
/// </summary>
PostRefresh,
/// <summary>
/// Event that is fired before an addon begins processing an event.
/// </summary>
PreReceiveEvent,
/// <summary>
/// Event that is fired after an addon has processed an event.
/// </summary>
PostReceiveEvent,
}