mirror of
https://github.com/redstrate/Auracite.git
synced 2025-04-23 21:27:45 +00:00
28 lines
676 B
C#
28 lines
676 B
C#
|
using Dalamud.Game.ClientState.Objects.Enums;
|
||
|
|
||
|
namespace Auracite;
|
||
|
|
||
|
public class AppearanceStep : IStep
|
||
|
{
|
||
|
public event IStep.CompletedDelegate? Completed;
|
||
|
|
||
|
public void Run()
|
||
|
{
|
||
|
if (Plugin.ClientState.LocalPlayer != null)
|
||
|
{
|
||
|
Plugin.package.height = Plugin.ClientState.LocalPlayer.Customize[(int)CustomizeIndex.Height];
|
||
|
Plugin.package.bust_size = Plugin.ClientState.LocalPlayer.Customize[(int)CustomizeIndex.BustSize];
|
||
|
}
|
||
|
Completed?.Invoke();
|
||
|
}
|
||
|
|
||
|
public string StepName()
|
||
|
{
|
||
|
return "Appearance";
|
||
|
}
|
||
|
|
||
|
public string StepDescription()
|
||
|
{
|
||
|
return "No user action required.";
|
||
|
}
|
||
|
}
|