23 lines
433 B
C#
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);
|
|
}
|
|
} |