1234567891011121314151617181920212223 |
- import "client2world_msg_type.proto";
- import "msg_type_def.proto";
- import "msg_info_def.proto";
- package client2world_protocols;
- // 领取蓝钻奖励
- message packetc2w_receive_blue_diamond_reward
- {
- optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_receive_blue_diamond_reward];
- //奖励ID
- optional int32 index = 2;
- }
- // 领取蓝钻奖励返回
- message packetw2c_receive_blue_diamond_reward_result
- {
- optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_receive_blue_diamond_reward_result];
- optional int32 result = 2;
- //奖励ID
- optional int32 index = 3;
- }
|