mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 05:04:15 +01:00
move around new Addon services a bit to match folder structure
This commit is contained in:
parent
6fbcd0e0e4
commit
c767971a36
26 changed files with 40 additions and 37 deletions
62
Dalamud/Game/Addon/Lifecycle/AddonEvent.cs
Normal file
62
Dalamud/Game/Addon/Lifecycle/AddonEvent.cs
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
namespace Dalamud.Game.Addon.Lifecycle;
|
||||
|
||||
/// <summary>
|
||||
/// Enumeration for available AddonLifecycle events.
|
||||
/// </summary>
|
||||
public enum AddonEvent
|
||||
{
|
||||
/// <summary>
|
||||
/// Event that is fired before an addon begins it's setup process.
|
||||
/// </summary>
|
||||
PreSetup,
|
||||
|
||||
/// <summary>
|
||||
/// Event that is fired after an addon has completed it's setup process.
|
||||
/// </summary>
|
||||
PostSetup,
|
||||
|
||||
/// <summary>
|
||||
/// Event that is fired before an addon begins update.
|
||||
/// </summary>
|
||||
PreUpdate,
|
||||
|
||||
/// <summary>
|
||||
/// Event that is fired after an addon has completed update.
|
||||
/// </summary>
|
||||
PostUpdate,
|
||||
|
||||
/// <summary>
|
||||
/// Event that is fired before an addon begins draw.
|
||||
/// </summary>
|
||||
PreDraw,
|
||||
|
||||
/// <summary>
|
||||
/// Event that is fired after an addon has completed draw.
|
||||
/// </summary>
|
||||
PostDraw,
|
||||
|
||||
/// <summary>
|
||||
/// Event that is fired before an addon is finalized.
|
||||
/// </summary>
|
||||
PreFinalize,
|
||||
|
||||
/// <summary>
|
||||
/// Event that is fired before an addon begins a requested update.
|
||||
/// </summary>
|
||||
PreRequestedUpdate,
|
||||
|
||||
/// <summary>
|
||||
/// Event that is fired after an addon finishes a requested update.
|
||||
/// </summary>
|
||||
PostRequestedUpdate,
|
||||
|
||||
/// <summary>
|
||||
/// Event that is fired before an addon begins a refresh.
|
||||
/// </summary>
|
||||
PreRefresh,
|
||||
|
||||
/// <summary>
|
||||
/// Event that is fired after an addon has finished a refresh.
|
||||
/// </summary>
|
||||
PostRefresh,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue