qstbak/Questionable/Questionable.Controller.Steps/IConditionChangeAware.cs
2025-10-09 07:47:19 +10:00

8 lines
204 B
C#

using Dalamud.Game.ClientState.Conditions;
namespace Questionable.Controller.Steps;
internal interface IConditionChangeAware : ITaskExecutor
{
void OnConditionChange(ConditionFlag flag, bool value);
}