mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-04 09:14:35 +03:00
15 lines
290 B
Protocol Buffer
15 lines
290 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemParam.proto";
|
|
|
|
// CmdId: 8682
|
|
// Name: GLBJKAJLDGJ
|
|
message SpiceActivityProcessFoodRsp {
|
|
repeated ItemParam special_food_list = 6;
|
|
int32 retcode = 3;
|
|
repeated ItemParam normal_food_list = 9;
|
|
}
|
|
|