This commit is contained in:
Yuuki
2024-08-28 13:04:33 +08:00
parent d4105a763b
commit fc5f9cde48
3519 changed files with 6975 additions and 5771 deletions

View File

@@ -0,0 +1,18 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// Version: 5.0
enum QuitReason {
INVALID = 0;
HOST_NO_OTHER_PLAYER = 1;
KICK_BY_HOST = 2;
BACK_TO_MY_WORLD = 3;
KICK_BY_HOST_LOGOUT = 4;
KICK_BY_HOST_BLOCK = 5;
BE_BLOCKED = 6;
KICK_BY_HOST_ENTER_HOME = 7;
HOST_SCENE_INVALID = 8;
KICK_BY_PLAY = 9;
KICK_BY_ISLAND_PARTY_GALLERY_START_FAILED = 10;
}