mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-05 00:26:06 +03:00
20 lines
505 B
Protocol Buffer
20 lines
505 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "AvatarEnterSceneInfo.proto";
|
|
import "MPLevelEntityInfo.proto";
|
|
import "TeamEnterSceneInfo.proto";
|
|
|
|
// CmdId: 274
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
// IsAllowClient: true
|
|
message PlayerEnterSceneInfoNotify {
|
|
uint32 cur_avatar_entity_id = 8;
|
|
repeated AvatarEnterSceneInfo avatar_enter_info = 14;
|
|
TeamEnterSceneInfo team_enter_info = 9;
|
|
MPLevelEntityInfo mp_level_entity_info = 5;
|
|
uint32 enter_scene_token = 7;
|
|
}
|