Example #1
0
		static void Main ( string[] args )
		{
			Trace.Listeners.Add( new ColoredTraceListener() );

			using ( var game = new QuadDemo() ) {
				game.Run(args);
			}
		}
Example #2
0
        static void Main( string[] args )
        {
            Trace.Listeners.Add( new ColoredTraceListener() );

            using ( var game = new QuadDemo() ) {
                if (Fusion.Development.DevCon.Prepare(game, @"..\..\..\Content\Content.xml", "Content")) {
                    game.Run(args);
                }
            }
        }
Example #3
0
        static void Main(string[] args)
        {
            Trace.Listeners.Add(new ColoredTraceListener());

            using (var game = new QuadDemo()) {
                if (Fusion.Development.DevCon.Prepare(game, @"..\..\..\Content\Content.xml", "Content"))
                {
                    game.Run(args);
                }
            }
        }