pla-01/Life/Automaton/IField.cs
2019-10-26 16:47:08 +02:00

21 lines
415 B
C#

using System;
using System.Collections.Generic;
using Life.Misc;
namespace Life.Automaton
{
public delegate Cell[,] Rule(IField old);
public interface IField : IObservable<IField>
{
Size Size { get; }
Cell this[int x, int y] { get; set; }
IEnumerable<Cell> Cells { get; }
IEnumerable<Cell> Neighbours(int x, int y);
void Transform(Rule rule);
}
}