Exemplo n.º 1
0
 /// <summary>
 /// Called when [activated].
 /// </summary>
 public override void OnActivated()
 {
     base.OnActivated();
     if (this.game != null)
     {
         game.OnActivated();
     }
 }
Exemplo n.º 2
0
Arquivo: App.cs Projeto: wbgl/Samples
        protected override void OnResume()
        {
            base.OnResume();

            if (game != null)
            {
                game.OnActivated();
            }
        }
Exemplo n.º 3
0
        public override void OnResuming()
        {
            base.OnResuming();

            game.OnActivated();
        }