Esempio n. 1
0
 public void AddRemoving(Cells.Cell cell)
 {
     OnReplace += (w) => w.Cells.Remove(cell);
 }
Esempio n. 2
0
 public void AddReplacing(Cells.Cell old, Type type, Tree owner, Gene active)
 {
     OnReplace += (w) => w.Cells.Replace(old, Cells.Cell.Create(type, owner, active));
 }