GC-Proto/proto/GadgetInteractRsp.proto

18 lines
351 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-08-22 20:09:33 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
import "InteractType.proto";
import "InterOpType.proto";
2023-08-22 20:23:37 +03:00
// CmdId: 831
// EnetChannelId: 0
// EnetIsReliable: true
2022-11-06 15:30:21 +03:00
message GadgetInteractRsp {
2023-08-22 20:23:37 +03:00
int32 retcode = 4;
uint32 gadget_entity_id = 6;
InteractType interact_type = 9;
InterOpType op_type = 1;
uint32 gadget_id = 14;
2022-11-06 15:30:21 +03:00
}