mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-12 10:17:23 +01:00
- Should help clear up ambiguity with any external plugins intending to call ReapplyState on a mod-change to themselves, to know if Glamourer has it handled for them.
16 lines
No EOL
420 B
C#
16 lines
No EOL
420 B
C#
using OtterGui.Classes;
|
|
|
|
namespace Glamourer.Events;
|
|
|
|
/// <summary>
|
|
/// Triggered when the auto-reload gear setting is changed in glamourer configuration.
|
|
/// </summary>
|
|
public sealed class AutoRedrawChanged()
|
|
: EventWrapper<bool, AutoRedrawChanged.Priority>(nameof(AutoRedrawChanged))
|
|
{
|
|
public enum Priority
|
|
{
|
|
/// <seealso cref="Api.StateApi.OnGPoseChange"/>
|
|
StateApi = int.MinValue,
|
|
}
|
|
} |