pla-01/Life/Automaton/IAutomaton.cs
2019-10-28 21:29:41 +01:00

16 lines
273 B
C#

using System;
namespace Life.Automaton
{
public interface IAutomaton
{
int Iteration { get; }
IField Field { get; }
IRule Rule { get; set; }
void Advance();
void ReplaceField(IField field);
void Reset();
}
}