mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-23 19:42:51 +01:00
11 lines
361 B
C#
11 lines
361 B
C#
namespace Phantom.Common.Data.Instance;
|
|
|
|
public enum InstanceLaunchFailReason : byte {
|
|
UnknownError = 0,
|
|
JavaRuntimeNotFound = 5,
|
|
CouldNotDownloadMinecraftServer = 6,
|
|
CouldNotConfigureMinecraftServer = 7,
|
|
CouldNotPrepareMinecraftServerLauncher = 8,
|
|
CouldNotStartMinecraftServer = 9
|
|
}
|