Example #1
0
        public override void FinishedLaunching(UIApplication application)
        {
            var   bounds = UIScreen.MainScreen.Bounds;
            Point size   = new Point((int)bounds.Width, (int)bounds.Height);

            game = new ChicksnVixensGame();
            game.Run();
        }
Example #2
0
        public override void FinishedLaunching(UIApplication application)
        {
            var bounds = UIScreen.MainScreen.Bounds;
            Point size = new Point((int)bounds.Width, (int)bounds.Height);

            game = new ChicksnVixensGame();
            game.Run();
        }
Example #3
0
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        static void Main(string[] args)
        {
            //	Point size = NamedScreenSizes.Get(args.Length > 0 ? args[0] : null);

            using (ChicksnVixensGame game = new ChicksnVixensGame())
            {
                game.Run();
            }
        }
Example #4
0
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        static void Main(string[] args)
        {
            //	Point size = NamedScreenSizes.Get(args.Length > 0 ? args[0] : null);

            using (ChicksnVixensGame game = new ChicksnVixensGame())
            {
                game.Run();
            }
        }
        protected override void SetupMainPage(MainPage mainPage)
        {
            FontSource uiFontSource = new FontSource(Application.GetResourceStream(
                    new Uri("/ChicksnVixens;component/Content/NGO_____.TTF", UriKind.Relative)).Stream);
            FontFamily uiFontFamily = new FontFamily("News Gothic");

            ContentManager.SilverlightFontTranslation("UIFont", new SpriteFontTTF(uiFontSource, uiFontFamily, 16));

            var game = new ChicksnVixensGame(NamedScreenSizes.Get("web"));
            mainPage.Children.Add(game);
            game.Play();
        }
Example #6
0
        protected override void SetupMainPage(MainPage mainPage)
        {
            FontSource uiFontSource = new FontSource(Application.GetResourceStream(
                                                         new Uri("/ChicksnVixens;component/Content/NGO_____.TTF", UriKind.Relative)).Stream);
            FontFamily uiFontFamily = new FontFamily("News Gothic");

            ContentManager.SilverlightFontTranslation("UIFont", new SpriteFontTTF(uiFontSource, uiFontFamily, 16));


            var game = new ChicksnVixensGame(NamedScreenSizes.Get("web"));

            mainPage.Children.Add(game);
            game.Play();
        }