namespace IngameScript { partial class Program { public interface ISequenceable { bool Running { get; } int Step { get; } void Start(bool reverse = true); bool Check(); void Finish(); } } }