mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 17:29:26 +03:00
9 lines
223 B
Protocol Buffer
9 lines
223 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
import "AvatarTeam.proto";
|
|
|
|
message AvatarTeamUpdateNotify {
|
|
repeated uint64 temp_avatar_guid_list = 7;
|
|
map<uint32, AvatarTeam> avatar_team_map = 9;
|
|
}
|