Ejemplo n.º 1
0
 public ButtonGroup(Color selectColor, SoundEffect sfx, Button[] buttons)
 {
     selectedColor = selectColor;
     selectSFX = sfx;
     selectedButton = 0;
     foreach (Button b in buttons)
     {
         this.buttons.Add(b);
     }
 }
Ejemplo n.º 2
0
 public void addButton(Button toAdd)
 {
     buttons.Add(toAdd);
 }