16 lines
305 B
Protocol Buffer
16 lines
305 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemParam.proto";
|
|
import "PlayerOfferingData.proto";
|
|
|
|
// Name: EFLAKKMMAMA
|
|
// CmdId: 2924
|
|
message PlayerOfferingRsp {
|
|
PlayerOfferingData offering_data = 1;
|
|
int32 retcode = 5;
|
|
repeated ItemParam item_list = 14;
|
|
}
|
|
|