20 lines
356 B
Protocol Buffer
20 lines
356 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
import "InteractType.proto";
|
||
|
import "InterOpType.proto";
|
||
|
|
||
|
message GadgetInteractRsp {
|
||
|
enum CmdId {
|
||
|
option allow_alias = true;
|
||
|
NONE = 0;
|
||
|
CMD_ID = 802;
|
||
|
ENET_CHANNEL_ID = 0;
|
||
|
ENET_IS_RELIABLE = 1;
|
||
|
}
|
||
|
int32 retcode = 1;
|
||
|
uint32 gadgetEntityId = 2;
|
||
|
InteractType interactType = 3;
|
||
|
InterOpType opType = 4;
|
||
|
uint32 gadgetId = 5;
|
||
|
}
|