mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
17 lines
339 B
Protocol Buffer
17 lines
339 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: KDDKDKOAGIK
|
|
message BrickBreakerPlayerBattleInfo {
|
|
repeated uint32 skill_list = 3;
|
|
bool is_ready = 12;
|
|
repeated uint32 avatar_id = 8;
|
|
uint32 uid = 6;
|
|
repeated uint32 costume_id = 2;
|
|
string nickname = 10;
|
|
bool is_changing = 4;
|
|
}
|
|
|