Exemplo n.º 1
0
 public static void Remove(Component UIelement)
 {
     removing.Add(UIelement);
 }
Exemplo n.º 2
0
        void button_onClick(Component sender)
        {
            ((Button)sender).Text = "Clicked";

            MediaPlayer.Stop();

            MediaPlayer.Play(LevelSong1);

            button.onClick -= button_onClick;
            button.Unload();
        }
Exemplo n.º 3
0
 public static void Add(Component uiElement)
 {
     components.Add(uiElement);
 }