19 lines
326 B
Protocol Buffer
19 lines
326 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
import "ResPlayerSimple.proto";
|
|
|
|
message CatnipGame{
|
|
int32 Id = 1;
|
|
int32 Status = 2;
|
|
int32 Progress = 3;
|
|
repeated int32 Reward = 4;
|
|
ResPlayerSimple Partner = 5;
|
|
int32 Emoji = 6;
|
|
int32 SendEmoji = 7;
|
|
int32 FriendProgress = 8;
|
|
}
|