mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
Add GetImageFilePath
This commit is contained in:
parent
6f6792f27e
commit
2e4796f8bf
6 changed files with 39 additions and 5 deletions
|
|
@ -9,7 +9,15 @@ namespace Dalamud.Injector
|
|||
internal static class Program
|
||||
{
|
||||
private static void Main(string[] args)
|
||||
{
|
||||
{
|
||||
var boot = new Bootstrapper(new BootstrapperOptions
|
||||
{
|
||||
BinaryDirectory = "",
|
||||
RootDirectory = "",
|
||||
});
|
||||
|
||||
boot.Launch("", "");
|
||||
|
||||
Parser.Default.ParseArguments<InjectOptions, LaunchOptions>(args)
|
||||
.WithParsed<InjectOptions>(Inject)
|
||||
.WithParsed<LaunchOptions>(Launch);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue