mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-13 03:17:43 +01:00
26 lines
468 B
C#
26 lines
468 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Dalamud.Injector
|
|
{
|
|
public sealed class DalamudLauncher
|
|
{
|
|
private readonly DalamudLauncherOptions m_options;
|
|
|
|
public DalamudLauncher(DalamudLauncherOptions options)
|
|
{
|
|
m_options = options;
|
|
}
|
|
|
|
public void Launch(string exePath)
|
|
{
|
|
//
|
|
}
|
|
|
|
public void Inject(uint pid)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|