GC-Proto/proto/TakeFurnitureMakeRsp.proto

15 lines
379 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
import "ItemParam.proto";
import "FurnitureMakeSlot.proto";
2024-07-08 14:40:31 +03:00
// 4.7.0
// CmdId: 28114
// Obf: DBKEABGBMHN
2022-11-06 15:30:21 +03:00
message TakeFurnitureMakeRsp {
2024-07-08 14:40:31 +03:00
repeated ItemParam return_item_list = 7;
FurnitureMakeSlot furniture_make_slot = 14;
repeated ItemParam output_item_list = 2;
uint32 make_id = 11;
int32 retcode = 3;
2022-11-06 15:30:21 +03:00
}