static void Main( string[] args ) { Trace.Listeners.Add( new ColoredTraceListener() ); using ( var game = new InstancingDemo() ) { if (Fusion.Development.DevCon.Prepare(game, @"..\..\..\Content\Content.xml", "Content")) { game.Run(args); } } }
static void Main(string[] args) { Trace.Listeners.Add(new ColoredTraceListener()); using (var game = new InstancingDemo()) { if (Fusion.Development.DevCon.Prepare(game, @"..\..\..\Content\Content.xml", "Content")) { game.Run(args); } } }
static void Main ( string[] args ) { Trace.Listeners.Add( new ColoredTraceListener() ); try { Builder.Build( @"..\..\..\Content", @"Content", @"..\..\..\Temp", false ); } catch ( Exception e ) { Log.Error( e.Message ); return; } using ( var game = new InstancingDemo() ) { game.Run(args); } }