mirror of
https://github.com/redstrate/Auracite.git
synced 2025-04-24 13:37:45 +00:00
There's some data we want to save that's not available on the Lodestone, for example playtime information. Now you can install the Dalamud plugin (not currently distributed) to save playtime information. In the future, we can expand this to all sorts of interesting things!
28 lines
No EOL
572 B
C#
28 lines
No EOL
572 B
C#
using System;
|
|
using Dalamud.Interface.Windowing;
|
|
using ImGuiNET;
|
|
|
|
namespace Auracite;
|
|
|
|
public class StepWindow()
|
|
: Window("Step Window"), IDisposable
|
|
{
|
|
public void Dispose()
|
|
{
|
|
}
|
|
|
|
public override void Draw()
|
|
{
|
|
if (Plugin.CurrentStep != null)
|
|
{
|
|
ImGui.Text(Plugin.CurrentStep.StepName());
|
|
ImGui.Text(Plugin.CurrentStep.StepDescription());
|
|
|
|
ImGui.TextDisabled("Step requires manual user action.");
|
|
}
|
|
else
|
|
{
|
|
ImGui.Text("Auracite is not running.");
|
|
}
|
|
}
|
|
} |