mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 22:54:29 +00:00
17 lines
417 B
Protocol Buffer
17 lines
417 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "AvatarInfo.proto";
|
|
import "AvatarTeam.proto";
|
|
|
|
message AvatarDataNotify {
|
|
repeated AvatarInfo avatarList = 1;
|
|
map<uint32, AvatarTeam> avatarTeamMap = 2;
|
|
uint32 curAvatarTeamId = 3;
|
|
fixed64 chooseAvatarGuid = 4;
|
|
repeated uint64 tempAvatarGuidList = 5;
|
|
repeated uint32 ownedFlycloakList = 6;
|
|
repeated uint32 ownedCostumeList = 7;
|
|
}
|