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

23 lines
433 B
C#

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