mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
20 lines
419 B
Protocol Buffer
20 lines
419 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "InterOpType.proto";
|
|
import "ResinCostType.proto";
|
|
|
|
// CmdId: 809
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
// IsAllowClient: true
|
|
message GadgetInteractReq {
|
|
uint32 gadget_entity_id = 9;
|
|
InterOpType op_type = 6;
|
|
uint32 gadget_id = 14;
|
|
bool is_use_condense_resin = 15;
|
|
ResinCostType resin_cost_type = 11;
|
|
uint32 GCIEIJIOADO = 12;
|
|
}
|