예제 #1
0
파일: Program.cs 프로젝트: danzel/WrapTest
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (Game1 game = new Game1())
     {
         game.Run();
     }
 }
예제 #2
0
파일: Program.cs 프로젝트: danzel/WrapTest
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            Microsoft.Xna.Framework.Game.Activity = this;
            var g = new Game1();
            SetContentView(g.Window);
            g.Run();
        }
예제 #3
0
        // Constructor
        public GamePage()
        {
            InitializeComponent();

            _game = XamlGame<Game1>.Create("", this);

            // Sample code to localize the ApplicationBar
            //BuildLocalizedApplicationBar();
        }
예제 #4
0
파일: Program.cs 프로젝트: danzel/WrapTest
 public override void FinishedLaunching(UIApplication app)
 {
     // Fun begins..
     game = new Game1();
     game.Run();
 }
예제 #5
0
파일: Program.cs 프로젝트: danzel/WrapTest
 public override void FinishedLaunching(MonoMac.Foundation.NSObject notification)
 {
     game = new Game1();
     game.Run();
 }