mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-24 00:11:31 +00:00
16 lines
411 B
Protocol Buffer
16 lines
411 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "AvatarEnterSceneInfo.proto";
|
||
|
import "MPLevelEntityInfo.proto";
|
||
|
import "TeamEnterSceneInfo.proto";
|
||
|
|
||
|
message PlayerEnterSceneInfoNotify {
|
||
|
uint32 curAvatarEntityId = 1;
|
||
|
repeated AvatarEnterSceneInfo avatarEnterInfo = 2;
|
||
|
TeamEnterSceneInfo teamEnterInfo = 3;
|
||
|
MPLevelEntityInfo mpLevelEntityInfo = 4;
|
||
|
uint32 enterSceneToken = 5;
|
||
|
}
|