2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2024-05-22 14:51:09 +03:00
|
|
|
|
|
|
|
import "TeamEnterSceneInfo.proto";
|
2023-05-23 09:48:59 +03:00
|
|
|
import "MPLevelEntityInfo.proto";
|
|
|
|
import "AvatarEnterSceneInfo.proto";
|
2024-04-21 23:51:36 +03:00
|
|
|
|
2024-05-22 14:51:09 +03:00
|
|
|
// 4.6.0
|
|
|
|
// CmdId: 1006
|
2022-11-06 15:30:21 +03:00
|
|
|
message PlayerEnterSceneInfoNotify {
|
2024-05-22 14:51:09 +03:00
|
|
|
TeamEnterSceneInfo team_enter_info = 10;
|
|
|
|
MPLevelEntityInfo mp_level_entity_info = 11;
|
|
|
|
repeated AvatarEnterSceneInfo avatar_enter_info = 5;
|
2024-04-21 23:51:36 +03:00
|
|
|
uint32 cur_avatar_entity_id = 12;
|
2024-05-22 14:51:09 +03:00
|
|
|
uint32 enter_scene_token = 9;
|
|
|
|
}
|