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