mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-02-25 20:08:14 +01:00
16 lines
492 B
C#
16 lines
492 B
C#
using Phantom.Agent.Services.Instances.State;
|
|
|
|
namespace Phantom.Agent.Services.Instances.Launch;
|
|
|
|
abstract record InstanceLaunchResult {
|
|
private InstanceLaunchResult() {}
|
|
|
|
public sealed record Success(InstanceProcess Process) : InstanceLaunchResult;
|
|
|
|
public sealed record CouldNotPrepareServerInstance : InstanceLaunchResult;
|
|
|
|
public sealed record CouldNotFindServerExecutable : InstanceLaunchResult;
|
|
|
|
public sealed record CouldNotStartServerExecutable : InstanceLaunchResult;
|
|
}
|