mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 14:47:44 +00:00
15 lines
300 B
Protocol Buffer
15 lines
300 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "InterOpType.proto";
|
|
import "ResinCostType.proto";
|
|
|
|
message GadgetInteractReq {
|
|
uint32 gadgetEntityId = 1;
|
|
InterOpType opType = 2;
|
|
uint32 gadgetId = 3;
|
|
bool isUseCondenseResin = 4;
|
|
ResinCostType resinCostType = 5;
|
|
}
|