using System; using Life.Misc; namespace Life.Automaton { [Serializable] public class Cell { public bool IsAlive { get; set; } } }