2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
|
|
|
|
import "InterOpType.proto";
|
|
|
|
import "ResinCostType.proto";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
2023-02-28 06:08:38 +03:00
|
|
|
// Name: KJHPMOAELOJ
|
|
|
|
// CmdId: 867
|
2022-11-06 15:30:21 +03:00
|
|
|
message GadgetInteractReq {
|
2023-02-28 06:08:38 +03:00
|
|
|
InterOpType op_type = 8;
|
|
|
|
ResinCostType resin_cost_type = 4;
|
|
|
|
bool is_use_condense_resin = 9;
|
|
|
|
uint32 gadget_id = 3;
|
|
|
|
uint32 ui_interact_id = 11;
|
|
|
|
uint32 gadget_entity_id = 2;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|
2023-02-28 06:08:38 +03:00
|
|
|
|