Skip to content

Commit

Permalink
Fixed debugger visualizer tool launch args
Browse files Browse the repository at this point in the history
  • Loading branch information
ilexp committed Dec 27, 2020
1 parent 97e2fc7 commit d50f648
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Tools/VisualStudio/DualityDebuggingTest/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Collections.Generic;

using Duality;
using Duality.Launcher;
using Duality.Backend;
using Duality.Resources;

Expand All @@ -10,13 +11,13 @@ namespace Duality.VisualStudio
public static class DualityDebuggingTester
{
[STAThread]
public static void Main()
public static void Main(string[] args)
{
DualityApp.Init(
DualityApp.ExecutionEnvironment.Launcher,
DualityApp.ExecutionContext.Game,
new DefaultAssemblyLoader(),
null);
new LauncherArgs(args));

WindowOptions options = new WindowOptions
{
Expand Down

0 comments on commit d50f648

Please sign in to comment.