added protocol dest

master
Alex 2021-12-27 20:35:33 +01:00
parent 504dfcde28
commit 72292646b4
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
package earth.krakatao.protocol;
import lombok.Getter;
public enum KraSocketClientProtocolDest {
BACKEND((byte) 1),
VOICE((byte) 2),
MOBILE((byte) 3),
PROXY((byte) 10),
PLAYERS_CURRENT_SERVER((byte) 11);
@Getter
private final byte status;
KraSocketClientProtocolDest(byte status) {
this.status = status;
}
}