/// <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 (CatGirlsGame game = new CatGirlsGame(size)) { game.Run(); } }
protected override void SetupMainPage(MainPage mainPage) { FontSource uiFontSource = new FontSource(Application.GetResourceStream( new Uri("/CatGirls;component/Content/NGO_____.TTF", UriKind.Relative)).Stream); FontFamily uiFontFamily = new FontFamily("News Gothic"); ContentManager.SilverlightFontTranslation("UIFont", new SpriteFontTTF(uiFontSource, uiFontFamily, 16)); var game = new CatGirlsGame(NamedScreenSizes.Get("web")); mainPage.Children.Add(game); game.Play(); }