15 lines
437 B
Protocol Buffer
15 lines
437 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "TeamEnterSceneInfo.proto";
|
|
import "AvatarEnterSceneInfo.proto";
|
|
import "MPLevelEntityInfo.proto";
|
|
|
|
// 4.7.0
|
|
message PlayerEnterSceneInfoNotify {
|
|
uint32 enter_scene_token = 1;
|
|
uint32 cur_avatar_entity_id = 4;
|
|
TeamEnterSceneInfo team_enter_info = 2;
|
|
repeated AvatarEnterSceneInfo avatar_enter_info = 12;
|
|
MPLevelEntityInfo mp_level_entity_info = 13;
|
|
} |