pla-01/Life/Automaton/Cell.cs
2019-10-26 16:47:08 +02:00

9 lines
125 B
C#

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