1
0
mirror of https://github.com/Grasscutters/Grasscutter.git synced 2025-03-03 17:42:52 +08:00
Grasscutter/proto/GadgetInteractReq.proto
2022-04-17 05:43:07 -07:00

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;
}