1
Fork 0
mirror of https://github.com/redstrate/Auracite.git synced 2025-04-24 13:37:45 +00:00
auracite/dalamud/Auracite/IStep.cs

15 lines
237 B
C#
Raw Normal View History

using System;
namespace Auracite;
public interface IStep : IDisposable
{
public event CompletedDelegate Completed;
void Run();
string StepName();
string StepDescription();
delegate void CompletedDelegate();
}