GC-Proto/proto/GadgetInteractRsp.proto

15 lines
318 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2024-05-26 13:51:42 +03:00
import "InteractType.proto";
2024-05-26 13:51:42 +03:00
import "InterOpType.proto";
2024-04-22 15:15:37 +03:00
2024-05-26 13:51:42 +03:00
// 4.6.0
// CmdId: 20933
2022-11-06 15:30:21 +03:00
message GadgetInteractRsp {
2024-05-26 13:51:42 +03:00
int32 retcode = 1;
uint32 gadget_id = 4;
InteractType interact_type = 11;
uint32 gadget_entity_id = 12;
InterOpType op_type = 13;
}