mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-24 21:51:50 +01:00
28 lines
1 KiB
C#
28 lines
1 KiB
C#
using OtterGui.Classes;
|
|
using Penumbra.Api;
|
|
using Penumbra.Api.Api;
|
|
using Penumbra.Services;
|
|
|
|
namespace Penumbra.Communication;
|
|
|
|
/// <summary>
|
|
/// Triggered whenever a character base draw object is being created by the game.
|
|
/// <list type="number">
|
|
/// <item>Parameter is the game object for which a draw object is created. </item>
|
|
/// <item>Parameter is the name of the applied collection. </item>
|
|
/// <item>Parameter is a pointer to the model id (an uint). </item>
|
|
/// <item>Parameter is a pointer to the customize array. </item>
|
|
/// <item>Parameter is a pointer to the equip data array. </item>
|
|
/// </list> </summary>
|
|
public sealed class CreatingCharacterBase()
|
|
: EventWrapper<nint, Guid, nint, nint, nint, CreatingCharacterBase.Priority>(nameof(CreatingCharacterBase))
|
|
{
|
|
public enum Priority
|
|
{
|
|
/// <seealso cref="PenumbraApi.CreatingCharacterBase"/>
|
|
Api = 0,
|
|
|
|
/// <seealso cref="CrashHandlerService.OnCreatingCharacterBase"/>
|
|
CrashHandler = 0,
|
|
}
|
|
}
|