forked from liza/Questionable
12 lines
174 B
C#
12 lines
174 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Questionable.Controller.Steps;
|
|
|
|
internal interface ITask
|
|
{
|
|
bool Start();
|
|
|
|
ETaskResult Update();
|
|
}
|