_fishBossHandler.cs 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. //
  5. // Changes to this file may cause incorrect behavior and will be lost if
  6. // the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. // ***************************************************************************
  10. // * 作者= justsogo
  11. // * 创建时间= 2020-10-15
  12. // * 用途= 鲛人玩法协议
  13. // ***************************************************************************
  14. // Generated from: fishBossHandler.proto
  15. namespace pomelo.fishboss
  16. {
  17. //---------------------------------------------------------------------------------------
  18. /// <summary>
  19. /// 鲛人boss开启进度信息 MSG_QueryFishBoss = 726;
  20. /// </summary>
  21. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FishBossInfoRequest")]
  22. public partial class FishBossInfoRequest : global::ProtoBuf.IExtensible
  23. {
  24. public FishBossInfoRequest() {}
  25. private global::ProtoBuf.IExtension extensionObject;
  26. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  27. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  28. }
  29. //---------------------------------------------------------------------------------------
  30. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FishBossInfoResponse")]
  31. public partial class FishBossInfoResponse : global::ProtoBuf.IExtensible
  32. {
  33. public FishBossInfoResponse() {}
  34. private int _s2c_code;
  35. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  36. public int s2c_code
  37. {
  38. get { return _s2c_code; }
  39. set { _s2c_code = value; }
  40. }
  41. private string _s2c_msg = "";
  42. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  43. [global::System.ComponentModel.DefaultValue("")]
  44. public string s2c_msg
  45. {
  46. get { return _s2c_msg; }
  47. set { _s2c_msg = value; }
  48. }
  49. private int _totalFeelings = default(int);
  50. /// <summary>
  51. /// 当前总的好感度
  52. /// </summary>
  53. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"totalFeelings", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  54. [global::System.ComponentModel.DefaultValue(default(int))]
  55. public int totalFeelings
  56. {
  57. get { return _totalFeelings; }
  58. set { _totalFeelings = value; }
  59. }
  60. private global::ProtoBuf.IExtension extensionObject;
  61. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  62. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  63. }
  64. }