wabbajack/Wabbajack/App.xaml.cs

23 lines
466 B
C#
Raw Normal View History

using System;
2019-11-28 08:00:43 +00:00
using System.Linq;
using System.Reflection;
using System.Windows;
2019-11-28 08:00:43 +00:00
using MahApps.Metro;
using Wabbajack.Common;
2019-07-22 22:17:46 +00:00
namespace Wabbajack
{
/// <summary>
2019-09-14 04:35:42 +00:00
/// Interaction logic for App.xaml
2019-07-22 22:17:46 +00:00
/// </summary>
public partial class App : Application
{
public App()
{
2020-01-05 12:52:18 +00:00
CLI.ParseOptions(Environment.GetCommandLineArgs());
2020-01-06 14:54:46 +00:00
if(CLIArguments.Help)
CLI.DisplayHelpText();
}
2019-07-22 22:17:46 +00:00
}
2019-11-24 08:12:28 +00:00
}