GC-Proto/proto/GadgetInteractReq.proto

14 lines
342 B
Protocol Buffer
Raw Permalink 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 "ResinCostType.proto";
2023-08-17 14:18:58 +03:00
import "InterOpType.proto";
2024-04-22 15:15:37 +03:00
2022-11-06 15:30:21 +03:00
message GadgetInteractReq {
2024-04-22 15:15:37 +03:00
uint32 ui_interact_id = 13;
uint32 gadget_entity_id = 1;
ResinCostType resin_cost_type = 5;
InterOpType op_type = 7;
uint32 gadget_id = 2;
bool is_use_condense_resin = 4;
2022-11-06 15:30:21 +03:00
}