This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
syntax = "proto3";
package pb;
option go_package = "/pb";
message User{
int64 uId = 1;//用户id
string uname = 2;//用户名
}
message JoinGame{
User user = 1;
message CreateUnit{
string unit = 2;//1-步兵,2-骑兵,3-弓箭手,4-法师
message Move{
string line = 2;//1-上,2-中,3-下
message Outbreak{
message Gift{
int32 giftId = 2;
int64 totalCoin = 3;
message Wai{