mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
9 lines
315 B
C#
9 lines
315 B
C#
using Phantom.Agent.Minecraft.Server;
|
|
using Serilog;
|
|
|
|
namespace Phantom.Agent.Minecraft.Launcher;
|
|
|
|
public interface IServerLauncher {
|
|
Task<LaunchResult> Launch(ILogger logger, LaunchServices services, EventHandler<DownloadProgressEventArgs> downloadProgressEventHandler, CancellationToken cancellationToken);
|
|
}
|