Ejemplo n.º 1
0
 public void ResetCell()
 {
     population.DeletePopulation();
     population = null;
     mouse      = null;
     cats       = null;
 }
Ejemplo n.º 2
0
 public СleanedСellUIController(IAwardWindow awardWindow, IGold gold, ICatsOnCell cats, ICellUIBuilder builder)
 {
     this.awardWindow = awardWindow;
     this.gold        = gold;
     this.cats        = cats;
     this.builder     = builder;
 }
Ejemplo n.º 3
0
 public FilledCellUIController(ICellData cellData, ICellWindow cellWindow, IMousePopulation population, IMouseData mouse, ICatsOnCell catsOnCell,
                               ICatsFabric catsFabric, ICatListWindow catList)
     : base(cellData, cellWindow)
 {
     this.population = population;
     this.mouse      = mouse;
     this.catsOnCell = catsOnCell;
     this.catsFabric = catsFabric;
     this.catList    = catList;
 }
Ejemplo n.º 4
0
 public void Add(ICatsOnCell cats)
 {
     this.cats = cats;
 }