GC-Proto/proto/GadgetInteractReq.proto

17 lines
359 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";
2024-05-26 13:51:42 +03:00
2023-08-17 14:18:58 +03:00
import "InterOpType.proto";
2024-05-26 13:51:42 +03:00
import "ResinCostType.proto";
2024-04-22 15:15:37 +03:00
2024-05-26 13:51:42 +03:00
// 4.6.0
// CmdId: 9529
2022-11-06 15:30:21 +03:00
message GadgetInteractReq {
2024-05-26 13:51:42 +03:00
InterOpType op_type = 3;
uint32 gadget_id = 4;
uint32 gadget_entity_id = 5;
bool is_use_condense_resin = 6;
ResinCostType resin_cost_type = 12;
uint32 LPLOBCLLOMD = 15;
2022-11-06 15:30:21 +03:00
}