17 lines
479 B
Protocol Buffer
17 lines
479 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
// CmdID: 26700
|
|
|
|
import "TeamEnterSceneInfo.proto";
|
|
import "AvatarEnterSceneInfo.proto";
|
|
import "MPLevelEntityInfo.proto";
|
|
|
|
message PlayerEnterSceneInfoNotify {
|
|
TeamEnterSceneInfo team_enter_info = 6;
|
|
repeated AvatarEnterSceneInfo avatar_enter_info = 7;
|
|
uint32 enter_scene_token = 11;
|
|
MPLevelEntityInfo mp_level_entity_info = 12;
|
|
uint32 cur_avatar_entity_id = 15;
|
|
}
|