8 lines
174 B
C#
8 lines
174 B
C#
using Dalamud.Game.Text.SeStringHandling;
|
|
|
|
namespace Questionable.Controller.Steps;
|
|
|
|
internal interface IToastAware : ITaskExecutor
|
|
{
|
|
bool OnErrorToast(SeString message);
|
|
}
|