22 lines
453 B
Protocol Buffer
22 lines
453 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
import "ItemInfo.proto";
|
|
import "MinigCfgGem.proto";
|
|
import "MiningCfgJackpot.proto";
|
|
import "MiningCfgPass.proto";
|
|
|
|
message MiningCfg{
|
|
string Name = 1;
|
|
int32 PassNum = 2;
|
|
repeated ItemInfo itemCost = 3;
|
|
int32 ItemId = 4;
|
|
int32 startItemnum = 5;
|
|
map<string, MinigCfgGem> Gem = 6;
|
|
map<string, MiningCfgJackpot> Jackpot = 7;
|
|
map<string, MiningCfgPass> Pass = 8;
|
|
}
|