Exemplo n.º 1
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            Pixeek.GameManager.Activity = this;
            var g = new Pixeek.GameManager();

            SetContentView(g.Window);
            //SetContentView((View)g.Services.GetService(typeof(View)));
            g.Run();
        }
Exemplo n.º 2
0
 static void Main()
 {
     using (Microsoft.Xna.Framework.Game game = new Pixeek.GameManager())
         game.Run();
 }