forked from aly/qstbak
29 lines
819 B
C#
29 lines
819 B
C#
using Dalamud.Bindings.ImGui;
|
|
|
|
namespace Questionable.Windows.Setup;
|
|
|
|
internal sealed class ReadyStep : ISetupStep
|
|
{
|
|
public string Title => "You're ready";
|
|
|
|
public bool CanAdvance => true;
|
|
|
|
public bool ShouldShow()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public void Draw()
|
|
{
|
|
ImGui.PushTextWrapPos(0f);
|
|
ImGui.TextUnformatted("Press Finish to complete setup. To use Questionable:");
|
|
ImGui.PopTextWrapPos();
|
|
ImGui.Spacing();
|
|
ImGui.BulletText("/qst - open the quest window");
|
|
ImGui.BulletText("/qst start - begin questing");
|
|
ImGui.BulletText("/qst stop - stop questing");
|
|
ImGui.BulletText("Double-tap ESC to cancel questing or movement at any time");
|
|
ImGui.Spacing();
|
|
ImGui.TextColored(in UiThemeUtils.DimTextColor, "Re-open this setup any time with /qst setup or from the Plugins tab in the config window.");
|
|
}
|
|
}
|