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