Exemple #1
0
 public ShelvesLeft(int num, ShelvesFront bF, SelecGameSuper select)
 {
     this.selectSuper = select;
     InitializeComponent();
     this.bF = bF;
     //this.cesta.createBasket(num);
 }
Exemple #2
0
        public ShelvesFront(int num, SelecGameSuper select, ControllerBookStand controller)
        {
            this.selectSuper = select;
            InitializeComponent();
            bR = new ShelvesRight(num, this, this.selectSuper);

            bL = new ShelvesLeft(num, this, this.selectSuper);

            this.cesta.createBasket(num);
            this.cesta.controller = controller;
            bR.cesta = this.cesta;
            bL.cesta = this.cesta;

            //this.time.startCrono();
        }
Exemple #3
0
 public HelpWindowSuper(SelecGameSuper sG)
 {
     InitializeComponent();
     this.sG = sG;
 }
Exemple #4
0
 public ShoppingList(int num, SelecGameSuper select)
 {
     InitializeComponent();
     this.num         = num;
     this.selectSuper = select;
 }