GC-Proto/proto/PlayerEnterSceneInfoNotify.proto
2024-04-22 04:51:36 +08:00

14 lines
425 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "MPLevelEntityInfo.proto";
import "AvatarEnterSceneInfo.proto";
import "TeamEnterSceneInfo.proto";
message PlayerEnterSceneInfoNotify {
uint32 cur_avatar_entity_id = 12;
uint32 enter_scene_token = 15;
MPLevelEntityInfo mp_level_entity_info = 1;
repeated AvatarEnterSceneInfo avatar_enter_info = 11;
TeamEnterSceneInfo team_enter_info = 13;
}