|
@@ -7,10 +7,7 @@ message ResLogin {
|
|
|
string userId = 1;
|
|
|
string nikeName = 2;
|
|
|
}
|
|
|
-message SiteShowRequest {
|
|
|
- int32 InitiatorSitPos = 1; // 发起比牌请求的玩家
|
|
|
- int32 OpponentSitPos = 2; // 和谁比
|
|
|
-}
|
|
|
+
|
|
|
message ReqUserInfo {
|
|
|
string UserId = 1;
|
|
|
int32 Points = 2;
|
|
@@ -172,6 +169,15 @@ enum PlayerOptType {
|
|
|
OPT_AGREESITESHOW =10;//同意与上家比牌
|
|
|
OPT_SELECTSITESHOW =11; // 操作上家比牌,同意和拒绝
|
|
|
}
|
|
|
+message SiteShowResult {
|
|
|
+ // 回合数
|
|
|
+ int32 round = 1;
|
|
|
+ // 回合座位
|
|
|
+ int32 roundSitPos = 2;
|
|
|
+ repeated ReqCard seenCards = 3; // 看牌的牌
|
|
|
+ // 用户id
|
|
|
+ string userId = 4;
|
|
|
+}
|
|
|
|
|
|
message PlayerOpt {
|
|
|
PlayerOptType opt_type = 1; // 操作类型
|