18 lines
344 B
Protocol Buffer
18 lines
344 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "InteractType.proto";
|
|
import "InterOpType.proto";
|
|
|
|
// CmdId: 896
|
|
// Name: NMBFBOFBOHD
|
|
message GadgetInteractRsp {
|
|
InterOpType op_type = 2;
|
|
int32 retcode = 7;
|
|
uint32 gadget_id = 8;
|
|
InteractType interact_type = 4;
|
|
uint32 gadget_entity_id = 15;
|
|
}
|
|
|