mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-18 22:07:44 +01:00
WIP dalamud.launcher rewrite
This commit is contained in:
parent
6cdbfd452a
commit
3f78ca5b81
409 changed files with 367 additions and 273916 deletions
26
Dalamud.Injector/DalamudLauncher.cs
Normal file
26
Dalamud.Injector/DalamudLauncher.cs
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue