15 lines
248 B
Protocol Buffer
15 lines
248 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
import "ChipInfo.proto";
|
|
import "ItemInfo.proto";
|
|
|
|
message NotifyPlayroomLose{
|
|
repeated ItemInfo LoseItem = 1;
|
|
repeated ChipInfo Chip = 2;
|
|
int64 Revenge = 3;
|
|
}
|