Esempio n. 1
0
 public Cell(CellInformation cellInformation)
 {
     this.matrix       = cellInformation.matrix;
     this.cellObjects  = cellInformation.cellObjects;
     this.SentServants = new List <SentServant>();
 }
Esempio n. 2
0
 public FieldCell(CellInformation cellInformation, GraphCell graphCell)
 {
     this.matrix       = cellInformation.matrix;
     this.SentServants = new List <SentServant>();
     this.graphCell    = graphCell;
 }
Esempio n. 3
0
 public Cell(CellInformation cellInformation, List <SentServant> sentServants)
 {
     this.matrix       = cellInformation.matrix;
     this.cellObjects  = cellInformation.cellObjects;
     this.SentServants = sentServants;
 }