Exemple #1
0
 public void AddSupplier(OneLayerBoundApplier applier)
 {
     singleSourceUnits.AddLast(new SingleSourceUnit(applier,
                                                    address,
                                                    stage,
                                                    NeedThisTile));
 }
		internal SingleSourceUnit(OneLayerBoundApplier applier, TileAddress address, int stage, SingleSourceUnit.NeedThisTileDelegate needThisTile)
		{
			this.applier = applier;
			this.address = address;
			this.stage = stage;
			this.needThisTile = needThisTile;
		}
Exemple #3
0
 internal SingleSourceUnit(OneLayerBoundApplier applier, TileAddress address, int stage, SingleSourceUnit.NeedThisTileDelegate needThisTile)
 {
     this.applier      = applier;
     this.address      = address;
     this.stage        = stage;
     this.needThisTile = needThisTile;
 }
		public void AddSupplier(OneLayerBoundApplier applier)
		{
			this.singleSourceUnits.AddLast(new SingleSourceUnit(applier, this.address, this.stage, new SingleSourceUnit.NeedThisTileDelegate(this.NeedThisTile)));
		}
Exemple #5
0
 public void AddSupplier(OneLayerBoundApplier applier)
 {
     this.singleSourceUnits.AddLast(new SingleSourceUnit(applier, this.address, this.stage, new SingleSourceUnit.NeedThisTileDelegate(this.NeedThisTile)));
 }