mirror of
https://github.com/redstrate/Auracite.git
synced 2025-04-24 05:37:44 +00:00
This is to facilitate support for this feature on the Web, where the plugin needs to start a server instead of Auracite itself. Otherwise, the functionality is identical to before.
15 lines
No EOL
237 B
C#
15 lines
No EOL
237 B
C#
using System;
|
|
|
|
namespace Auracite;
|
|
|
|
public interface IStep : IDisposable
|
|
{
|
|
public event CompletedDelegate Completed;
|
|
|
|
void Run();
|
|
|
|
string StepName();
|
|
string StepDescription();
|
|
|
|
delegate void CompletedDelegate();
|
|
} |