using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Linq; using System.Threading.Tasks; using System.Windows; using System.Windows.Interop; using System.Windows.Media; using Wabbajack.Common; using Wabbajack.Util; namespace Wabbajack { /// /// Interaction logic for App.xaml /// public partial class App : Application { public App() { RenderOptions.ProcessRenderMode = RenderMode.SoftwareOnly; CLIOld.ParseOptions(Environment.GetCommandLineArgs()); if (CLIArguments.Help) CLIOld.DisplayHelpText(); } } }