client2world_star_lottery.proto 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import "client2world_msg_type.proto";
  2. import "msg_type_def.proto";
  3. import "msg_info_def.proto";
  4. package client2world_protocols;
  5. // 请求转盘抽奖
  6. // message packetc2w_star_lottery_info
  7. // {
  8. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_star_lottery_info];
  9. // }
  10. // // 请求转盘抽奖结果
  11. // message packetw2c_star_lottery_info_result
  12. // {
  13. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_star_lottery_info_result];
  14. // // 星星
  15. // optional int32 star = 2;
  16. // // 奖池
  17. // optional int32 award = 3;
  18. // }
  19. // //请求抽奖
  20. // message packetc2w_req_star_lottery
  21. // {
  22. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_star_lottery];
  23. // }
  24. // //抽奖结果
  25. // message packetc2w_req_star_lottery_result
  26. // {
  27. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_star_lottery_result];
  28. // optional msg_type_def.e_msg_result_def result = 2 [default = e_rmt_fail];
  29. // // 返回奖金
  30. // optional int32 award = 3;
  31. // // 奖品类型
  32. // optional int32 itemtype = 4;
  33. // // 奖品数量
  34. // optional int32 itemcount = 5;
  35. // }