using System.Collections.Generic;

namespace IngameScript
{
    partial class Program
    {
        public interface ISequenceable
        {
            bool Running { get; }
            int Step { get; set; }
            IEnumerator<bool> Run(bool deploy);
        }
    }
}