using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Svelto.Tasks;
namespace GamecraftModdingAPI.Tasks
{
///
/// Interface for asynchronous tasks
///
public interface ISchedulable
{
///
/// Asynchronous task runner
///
/// A yield-ed Svelto.Tasks-compatible object
IEnumerator Run();
}
}