WIP dalamud.launcher rewrite

This commit is contained in:
Mino 2020-02-27 01:28:25 +09:00
parent 6cdbfd452a
commit 3f78ca5b81
409 changed files with 367 additions and 273916 deletions

View file

@ -0,0 +1,18 @@
using System;
using CommandLine;
namespace Dalamud.Injector
{
[Verb("inject")]
internal sealed class InjectOptions
{
[Option('p', "pid", Required = true, HelpText = "A target process id to inject.")]
public uint Pid { get; set; }
[Option("root", Required = true, HelpText = "")]
public string RootDirectory { get; set; }
[Option("bin", Required = true, HelpText = "")]
public string BinaryDirectory { get; set; }
}
}