mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
326 B
Protocol Buffer
17 lines
326 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// CmdId: 5516
|
|
// Name: JGEBAOBIIFH
|
|
message GalleryFallCatchNotify {
|
|
uint32 gallery_id = 10;
|
|
map<uint32, uint32> ball_catch_count_map = 3;
|
|
uint32 time_cost = 7;
|
|
bool is_ground = 5;
|
|
uint32 add_score = 11;
|
|
uint32 cur_score = 2;
|
|
}
|
|
|