mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
341 B
Protocol Buffer
17 lines
341 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: DMDNCLBJMGG
|
|
message BrickBreakerPlayerBattleInfo {
|
|
bool is_ready = 15;
|
|
repeated uint32 skill_list = 9;
|
|
uint32 uid = 11;
|
|
repeated uint32 avatar_id = 12;
|
|
bool is_changing = 10;
|
|
repeated uint32 costume_id = 1;
|
|
string nickname = 5;
|
|
}
|
|
|