mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-02-25 11:08:17 +01:00
9 lines
236 B
C#
9 lines
236 B
C#
namespace Phantom.Common.Data.Instance;
|
|
|
|
public enum InstanceLaunchFailReason : byte {
|
|
UnknownError = 0,
|
|
CouldNotPrepareServerInstance = 1,
|
|
CouldNotFindServerExecutable = 2,
|
|
CouldNotStartServerExecutable = 3,
|
|
}
|