mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
16 lines
312 B
Protocol Buffer
16 lines
312 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemParam.proto";
|
|
|
|
// CmdId: 2132
|
|
// Name: AOFKHINBNPA
|
|
message ActivityTakeWatcherRewardBatchRsp {
|
|
int32 retcode = 7;
|
|
repeated ItemParam item_list = 8;
|
|
uint32 activity_id = 3;
|
|
repeated uint32 watcher_id_list = 6;
|
|
}
|
|
|