16 lines
353 B
Protocol Buffer
16 lines
353 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "InterOpType.proto";
|
|
import "ResinCostType.proto";
|
|
|
|
// 4.7.0
|
|
message GadgetInteractReq {
|
|
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;
|
|
}
|