7 lines
104 B
C#
7 lines
104 B
C#
namespace Life.Automaton
|
|
{
|
|
public interface IRule
|
|
{
|
|
Cell[,] Next(IField old);
|
|
}
|
|
} |