24 lines
705 B
C#
24 lines
705 B
C#
using Dalamud.Bindings.ImGui;
|
|
|
|
namespace Questionable.Windows.Setup;
|
|
|
|
internal sealed class WelcomeStep : ISetupStep
|
|
{
|
|
public string Title => "Welcome";
|
|
|
|
public bool CanAdvance => true;
|
|
|
|
public bool ShouldShow()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public void Draw()
|
|
{
|
|
ImGui.PushTextWrapPos(0f);
|
|
ImGui.TextUnformatted("Questionable automates Main Scenario and side quests - accepting and turning in quests, moving you to objectives, and handling dialogue and cutscenes.");
|
|
ImGui.Spacing();
|
|
ImGui.TextColored(in UiThemeUtils.DimTextColor, "This is automation - keep an eye on it the first time. This short setup gets the required plugins and a couple of settings in place.");
|
|
ImGui.PopTextWrapPos();
|
|
}
|
|
}
|