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 "AvatarEnterSceneInfo.proto";
|
2024-06-23 20:46:20 +03:00
|
|
|
import "MPLevelEntityInfo.proto";
|
2024-04-21 23:51:36 +03:00
|
|
|
|
2024-06-23 20:46:20 +03:00
|
|
|
// 4.7.0
|
2022-11-06 15:30:21 +03:00
|
|
|
message PlayerEnterSceneInfoNotify {
|
2024-06-23 20:46:20 +03:00
|
|
|
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;
|
2024-05-22 14:51:09 +03:00
|
|
|
}
|