11 lines
158 B
C#
11 lines
158 B
C#
using System;
|
|
using Life.Misc;
|
|
|
|
namespace Life.Automaton
|
|
{
|
|
[Serializable]
|
|
public class Cell
|
|
{
|
|
public bool IsAlive { get; set; }
|
|
}
|
|
} |