pla-01/Life/Automaton/IAutomaton.cs
2019-10-28 16:12:04 +01:00

14 lines
218 B
C#

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