GC-Proto/proto/GadgetInteractReq.proto

16 lines
353 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-06-23 18:33:14 +03:00
// 4.7.0
2022-11-06 15:30:21 +03:00
message GadgetInteractReq {
2024-06-23 18:33:14 +03:00
InterOpType op_type = 1;
uint32 ui_interact_id = 3;
bool is_use_condense_resin = 7;
uint32 gadget_id = 8;
ResinCostType resin_cost_type = 13;
uint32 gadget_entity_id = 15;
2022-11-06 15:30:21 +03:00
}