コード例 #1
0
ファイル: Cell.cs プロジェクト: ArtsemiLasyi/Carcassonne
 public Cell(CellInformation cellInformation)
 {
     this.matrix       = cellInformation.matrix;
     this.cellObjects  = cellInformation.cellObjects;
     this.SentServants = new List <SentServant>();
 }
コード例 #2
0
 public FieldCell(CellInformation cellInformation, GraphCell graphCell)
 {
     this.matrix       = cellInformation.matrix;
     this.SentServants = new List <SentServant>();
     this.graphCell    = graphCell;
 }
コード例 #3
0
ファイル: Cell.cs プロジェクト: ArtsemiLasyi/Carcassonne
 public Cell(CellInformation cellInformation, List <SentServant> sentServants)
 {
     this.matrix       = cellInformation.matrix;
     this.cellObjects  = cellInformation.cellObjects;
     this.SentServants = sentServants;
 }