9 lines
125 B
C#
9 lines
125 B
C#
using Life.Misc;
|
|
|
|
namespace Life.Automaton
|
|
{
|
|
public class Cell
|
|
{
|
|
public bool IsAlive { get; set; }
|
|
}
|
|
} |