123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- syntax = "proto3";
- package ET;
- import 'Common.proto';
- message C2G_HGHHReady // IRequest
- {
- int32 RpcId = 1;
- }
- message G2C_HGHHReady // IResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- bool IsReady = 4;
- }
- message G2C_HGHHReadyPush // IActorMessage
- {
- RoomInfo info = 1;
- }
- message C2G_HGHHKick // IRequest
- {
- int32 RpcId = 1;
- int32 RoomId = 2;
- int64 PlayerId = 3;
- }
- message G2C_HGHHKick // IResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message G2C_HGHHKickPush // IActorMessage
- {
- RoomInfo info = 1;
- }
- message G2C_HGHHReadyStartPush // IActorMessage
- {
- int64 ReadyStartTime = 1;
- }
- message G2C_HGHHStartPush // IActorMessage
- {
- RoomInfo info = 1;
- }
- message G2C_HGHHDrawCardPush // IActorMessage
- {
- RoomInfo info = 1;
- }
- message C2G_HGHHDisCard // IRequest
- {
- int32 RpcId = 1;
- int32 Card = 2;
- }
- message G2C_HGHHDisCard // IResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message G2C_HGHHDisCardPush // IActorMessage
- {
- RoomInfo info = 1;
- }
- message C2G_HGHHOperation // IRequest
- {
- int32 RpcId = 1;
- int32 OpType = 2;
- int32 Card = 3;
- }
- message G2C_HGHHOperation // IResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- }
- message G2C_HGHHOperationPush // IActorMessage
- {
- RoomInfo info = 1;
- int32 OpType = 2;
- }
- message G2C_HGHHSettlementPush // IActorMessage
- {
- int32 CurRound = 1;
- repeated PlayerInfo PlayerInfo = 2;
- }
|