GC-Proto/proto/GadgetInteractRsp.proto

14 lines
305 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-06-23 18:33:14 +03:00
// 4.7.0
2022-11-06 15:30:21 +03:00
message GadgetInteractRsp {
2024-06-23 18:33:14 +03:00
InteractType interact_type = 3;
InterOpType op_type = 4;
int32 retcode = 6;
uint32 gadget_id = 8;
uint32 gadget_entity_id = 10;
2024-05-26 13:51:42 +03:00
}