mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-02-23 06:50:31 +03:00
13 lines
367 B
Protocol Buffer
13 lines
367 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
enum DungeonCandidateTeamPlayerLeaveReason {
|
||
|
DUNGEON_CANDIDATE_TEAM_PLAYER_LEAVE_REASON_TPLR_NORMAL = 0;
|
||
|
DUNGEON_CANDIDATE_TEAM_PLAYER_LEAVE_REASON_TPLR_DIE = 1;
|
||
|
DUNGEON_CANDIDATE_TEAM_PLAYER_LEAVE_REASON_TPLR_BE_KICK = 2;
|
||
|
DUNGEON_CANDIDATE_TEAM_PLAYER_LEAVE_REASON_TPLR_DISCONNECT = 3;
|
||
|
}
|