19 lines
476 B
Protocol Buffer
19 lines
476 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "AvatarEnterSceneInfo.proto";
|
|
import "MPLevelEntityInfo.proto";
|
|
import "TeamEnterSceneInfo.proto";
|
|
|
|
// Name: JDKFMLDEKMO
|
|
// CmdId: 289
|
|
message PlayerEnterSceneInfoNotify {
|
|
repeated AvatarEnterSceneInfo avatar_enter_info = 10;
|
|
uint32 enter_scene_token = 9;
|
|
TeamEnterSceneInfo team_enter_info = 15;
|
|
uint32 cur_avatar_entity_id = 6;
|
|
MPLevelEntityInfo mp_level_entity_info = 4;
|
|
}
|
|
|