Пример #1
0
        /// <summary>
        /// Constructs a new screen manager component.
        /// </summary>
        public ScreenManager(BluGame game, string fontLocation)
            : base(game)
        {
            if (instance == null)
                instance = this;

            this.defaultFontLocation = fontLocation;
        }
Пример #2
0
 static void Main()
 {
     using (var game = new BluGame(new BluGameInitSettings(typeof(SplashScreen))))
         game.Run();
 }