14 lines
218 B
C#
14 lines
218 B
C#
using System;
|
|
|
|
namespace Life.Automaton
|
|
{
|
|
public interface IAutomaton
|
|
{
|
|
int Iteration { get; }
|
|
IField Field { get; }
|
|
|
|
void Advance();
|
|
|
|
void ReplaceField(IField field);
|
|
}
|
|
} |