pla-01/Life/Automaton/Cell.cs
2019-10-28 16:12:04 +01:00

11 lines
158 B
C#

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