mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-23 19:42:51 +01:00
14 lines
365 B
C#
14 lines
365 B
C#
namespace Phantom.Common.Data.Replies;
|
|
|
|
public enum LaunchInstanceResult : byte {
|
|
LaunchInitiated = 1,
|
|
InstanceAlreadyLaunching = 2,
|
|
InstanceAlreadyRunning = 3,
|
|
InstanceLimitExceeded = 4,
|
|
MemoryLimitExceeded = 5,
|
|
ServerPortNotAllowed = 6,
|
|
ServerPortAlreadyInUse = 7,
|
|
RconPortNotAllowed = 8,
|
|
RconPortAlreadyInUse = 9
|
|
}
|