14 lines
275 B
C#
14 lines
275 B
C#
using System.Collections.Generic;
|
|
|
|
namespace IngameScript
|
|
{
|
|
partial class Program
|
|
{
|
|
public interface ISequenceable
|
|
{
|
|
bool Running { get; }
|
|
int Step { get; set; }
|
|
IEnumerator<bool> Run(bool deploy);
|
|
}
|
|
}
|
|
} |