_pvpKillHandler.cs 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. // * 创建时间= 2018-10-25
  12. // * 用途= 杀意
  13. // ***************************************************************************
  14. // Generated from: pvpKillHandler.proto
  15. namespace pomelo.player
  16. {
  17. //---------------------------------------------------------------------------------------
  18. /// <summary>
  19. /// public static final short MSG_UpgradeKillLevel = 465
  20. /// </summary>
  21. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"UpgradeKillLevelRequest")]
  22. public partial class UpgradeKillLevelRequest : global::ProtoBuf.IExtensible
  23. {
  24. public UpgradeKillLevelRequest() {}
  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. /// <summary>
  31. /// s2c_msg成功为空,其他弹出提示
  32. /// </summary>
  33. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"UpgradeKillLevelResponse")]
  34. public partial class UpgradeKillLevelResponse : global::ProtoBuf.IExtensible
  35. {
  36. public UpgradeKillLevelResponse() {}
  37. private int _s2c_code;
  38. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  39. public int s2c_code
  40. {
  41. get { return _s2c_code; }
  42. set { _s2c_code = value; }
  43. }
  44. private string _s2c_msg = "";
  45. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  46. [global::System.ComponentModel.DefaultValue("")]
  47. public string s2c_msg
  48. {
  49. get { return _s2c_msg; }
  50. set { _s2c_msg = value; }
  51. }
  52. private global::ProtoBuf.IExtension extensionObject;
  53. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  54. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  55. }
  56. }