19 lines
365 B
Protocol Buffer
19 lines
365 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "AvatarInfo.proto";
|
|
import "AvatarTeam.proto";
|
|
|
|
message AvatarDataNotify {
|
|
enum CmdId {
|
|
option allow_alias = true;
|
|
NONE = 0;
|
|
CMD_ID = 134;
|
|
ENET_CHANNEL_ID = 0;
|
|
ENET_IS_RELIABLE = 1;
|
|
}
|
|
repeated AvatarInfo avatarList = 1;
|
|
map<uint32, AvatarTeam> avatarTeamMap = 2;
|
|
uint32 curAvatarTeamId = 3;
|
|
uint64 chooseAvatarGuid = 4;
|
|
}
|