示例#1
0
 private void Construct(
     GameGrid grid,
     SwappingInputSwitch swappingInputSwitch,
     BoardUpdater boardUpdater,
     MatchSoundController matchSoundController)
 {
     this.grid = grid;
     this.swappingInputSwitch  = swappingInputSwitch;
     this.boardUpdater         = boardUpdater;
     this.matchSoundController = matchSoundController;
     itemsToBeDisposed         = new List <Item>();
 }
示例#2
0
 private void Construct(SwappingInputSwitch swappingInputSwitch, ExtraItemSpawner extraItemSpawner)
 {
     this.swappingInputSwitch = swappingInputSwitch;
     this.extraItemSpawner    = extraItemSpawner;
 }