2019-10-03 04:35:29 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
using Wabbajack.Common;
|
2019-07-22 22:17:46 +00:00
|
|
|
|
|
|
|
|
|
namespace Wabbajack
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2020-01-25 23:25:51 +00:00
|
|
|
|
/// Interaction logic for App.xaml
|
2019-07-22 22:17:46 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class App : Application
|
|
|
|
|
{
|
2019-10-03 04:35:29 +00:00
|
|
|
|
public App()
|
|
|
|
|
{
|
2020-01-31 22:56:26 +00:00
|
|
|
|
CLIOld.ParseOptions(Environment.GetCommandLineArgs());
|
2020-01-25 23:25:51 +00:00
|
|
|
|
if (CLIArguments.Help)
|
2020-01-31 22:56:26 +00:00
|
|
|
|
CLIOld.DisplayHelpText();
|
2019-10-06 21:58:36 +00:00
|
|
|
|
}
|
2019-07-22 22:17:46 +00:00
|
|
|
|
}
|
2019-11-24 08:12:28 +00:00
|
|
|
|
}
|