mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-28 19:39:21 +01:00
16 lines
571 B
C#
16 lines
571 B
C#
using OtterGui.Classes;
|
|
|
|
namespace Penumbra.Communication;
|
|
|
|
/// <summary> <list type="number">
|
|
/// <item>Parameter is the material resource handle for which the shader package has been loaded. </item>
|
|
/// <item>Parameter is the associated game object. </item>
|
|
/// </list> </summary>
|
|
public sealed class MtrlShpkLoaded() : EventWrapper<nint, nint, MtrlShpkLoaded.Priority>(nameof(MtrlShpkLoaded))
|
|
{
|
|
public enum Priority
|
|
{
|
|
/// <seealso cref="Interop.Services.ShaderReplacementFixer.OnMtrlShpkLoaded"/>
|
|
ShaderReplacementFixer = 0,
|
|
}
|
|
}
|