mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
16 lines
346 B
Protocol Buffer
16 lines
346 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "CoinCollectTeamAvatarInfo.proto";
|
|
|
|
// Name: PJGEGAHJACE
|
|
message CoinCollectPlayerInfo {
|
|
uint32 choose_skill_no = 12;
|
|
uint32 player_uid = 8;
|
|
repeated CoinCollectTeamAvatarInfo avatar_info_list = 2;
|
|
bool is_prepare = 1;
|
|
string player_name = 15;
|
|
}
|
|
|