mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
14 lines
357 B
C#
14 lines
357 B
C#
using Phantom.Agent.Minecraft.Instance;
|
|
|
|
namespace Phantom.Agent.Minecraft.Launcher;
|
|
|
|
public abstract record LaunchResult {
|
|
private LaunchResult() {}
|
|
|
|
public sealed record Success(InstanceSession Session) : LaunchResult;
|
|
|
|
public sealed record InvalidJavaRuntime : LaunchResult;
|
|
|
|
public sealed record CouldNotDownloadMinecraftServer : LaunchResult;
|
|
}
|