mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-05-19 07:34:05 +02: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);
|
|
}
|