pla-01/Life/Automaton/IRule.cs
2019-10-28 18:44:10 +01:00

7 lines
104 B
C#

namespace Life.Automaton
{
public interface IRule
{
Cell[,] Next(IField old);
}
}