mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 17:00:24 +03:00
16 lines
490 B
Protocol Buffer
16 lines
490 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
|
|
enum PlayerLogoutReason {
|
|
PlayerLogoutReason_Disconnect = 0;
|
|
PlayerLogoutReason_ClientReq = 1;
|
|
PlayerLogoutReason_Timeout = 2;
|
|
PlayerLogoutReason_AdminReq = 3;
|
|
PlayerLogoutReason_ServerClose = 4;
|
|
PlayerLogoutReason_GmClear = 5;
|
|
PlayerLogoutReason_PlayerTransfer = 6;
|
|
PlayerLogoutReason_ClientChecksumInvalid = 7;
|
|
PlayerLogoutReason_MuipMoveSaveWait = 8;
|
|
}
|