mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 16:16:46 +00:00
18 lines
396 B
Protocol Buffer
18 lines
396 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "FurnitureMakeSlot.proto";
|
||
|
import "ItemParam.proto";
|
||
|
|
||
|
// CmdId: 4599
|
||
|
// EnetChannelId: 0
|
||
|
// EnetIsReliable: true
|
||
|
message TakeFurnitureMakeRsp {
|
||
|
int32 retcode = 9;
|
||
|
uint32 make_id = 2;
|
||
|
FurnitureMakeSlot furniture_make_slot = 15;
|
||
|
repeated ItemParam output_item_list = 10;
|
||
|
repeated ItemParam return_item_list = 5;
|
||
|
}
|