14 lines
285 B
C#
14 lines
285 B
C#
namespace IngameScript
|
|
{
|
|
partial class Program
|
|
{
|
|
public interface ISequenceable
|
|
{
|
|
bool Running { get; }
|
|
int Step { get; }
|
|
void Start(bool reverse = true);
|
|
bool Check();
|
|
void Finish();
|
|
}
|
|
}
|
|
} |