mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
20 lines
477 B
C#
20 lines
477 B
C#
using System;
|
|
using CommandLine;
|
|
using Dalamud.Injector.Windows;
|
|
|
|
namespace Dalamud.Injector
|
|
{
|
|
internal static class Program
|
|
{
|
|
private static void Main(string[] args)
|
|
{
|
|
var shit = Process.Open(12732);
|
|
var cmd = shit.ReadCommandLine();
|
|
/*Parser.Default.ParseArguments<InjectOptions>(args)
|
|
.WithParsed<InjectOptions>(opt =>
|
|
{
|
|
|
|
});*/
|
|
}
|
|
}
|
|
}
|