forked from liza/Questionable
9 lines
180 B
C#
9 lines
180 B
C#
using Dalamud.Game.Text.SeStringHandling;
|
|
|
|
namespace Questionable.Controller.Steps;
|
|
|
|
internal interface IToastAware : ITaskExecutor
|
|
{
|
|
bool OnErrorToast(SeString message);
|
|
}
|