GC-Proto/proto/ForgeQueueManipulateRsp.proto

15 lines
437 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";
2022-11-06 15:30:21 +03:00
import "ItemParam.proto";
2023-08-17 14:18:58 +03:00
import "ForgeQueueManipulateType.proto";
2024-07-08 14:40:31 +03:00
// 4.7.0
// CmdId: 24425
// Obf: NPEECEKGJIL
2022-11-06 15:30:21 +03:00
message ForgeQueueManipulateRsp {
2024-07-08 14:40:31 +03:00
repeated ItemParam output_item_list = 2; // SUS
repeated ItemParam extra_output_item_list = 11; // ?
ForgeQueueManipulateType manipulate_type = 8;
repeated ItemParam return_item_list = 7; // SUS
int32 retcode = 3;
2022-11-06 15:30:21 +03:00
}