16 lines
249 B
Protocol Buffer
16 lines
249 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
import "HANDLE_TYPE.proto";
|
|
|
|
message ChessHandle{
|
|
HANDLE_TYPE type = 1;
|
|
int32 Emit = 2;
|
|
int32 ChessId = 3;
|
|
int32 Id = 4;
|
|
repeated int32 ActType = 5;
|
|
}
|