GC-Proto/proto/BrickBreakerPlayerBattleInfo.proto

17 lines
339 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-02-28 04:12:44 +03:00
// Name: KDDKDKOAGIK
2023-02-18 04:48:44 +03:00
message BrickBreakerPlayerBattleInfo {
2023-02-28 04:12:44 +03:00
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;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00