_masteryHandler.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605
  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. // * 作者= 卢松洁
  11. // * 创建时间= 2015-08-27
  12. // * 用途:精炼处理
  13. // ***************************************************************************
  14. // Generated from: masteryHandler.proto
  15. // Note: requires additional types generated from: common.proto
  16. // Note: requires additional types generated from: item.proto
  17. namespace pomelo.area
  18. {
  19. //---------------------------------------------------------------------------------------
  20. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"Mastery")]
  21. public partial class Mastery : global::ProtoBuf.IExtensible
  22. {
  23. public Mastery() {}
  24. private int _pos;
  25. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  26. public int pos
  27. {
  28. get { return _pos; }
  29. set { _pos = value; }
  30. }
  31. private string _name = "";
  32. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  33. [global::System.ComponentModel.DefaultValue("")]
  34. public string name
  35. {
  36. get { return _name; }
  37. set { _name = value; }
  38. }
  39. private string _icon = "";
  40. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"icon", DataFormat = global::ProtoBuf.DataFormat.Default)]
  41. [global::System.ComponentModel.DefaultValue("")]
  42. public string icon
  43. {
  44. get { return _icon; }
  45. set { _icon = value; }
  46. }
  47. private int _level = default(int);
  48. /// <summary>
  49. /// 当前等级
  50. /// </summary>
  51. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"level", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  52. [global::System.ComponentModel.DefaultValue(default(int))]
  53. public int level
  54. {
  55. get { return _level; }
  56. set { _level = value; }
  57. }
  58. private int _maxLevel = default(int);
  59. /// <summary>
  60. /// 最大等级
  61. /// </summary>
  62. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"maxLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  63. [global::System.ComponentModel.DefaultValue(default(int))]
  64. public int maxLevel
  65. {
  66. get { return _maxLevel; }
  67. set { _maxLevel = value; }
  68. }
  69. private pomelo.AttributeBase _attributes = null;
  70. /// <summary>
  71. /// 属性,只有一种
  72. /// </summary>
  73. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"attributes", DataFormat = global::ProtoBuf.DataFormat.Default)]
  74. [global::System.ComponentModel.DefaultValue(null)]
  75. public pomelo.AttributeBase attributes
  76. {
  77. get { return _attributes; }
  78. set { _attributes = value; }
  79. }
  80. private pomelo.item.MiniItem _material = null;
  81. /// <summary>
  82. /// 材料,只有一种
  83. /// </summary>
  84. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"material", DataFormat = global::ProtoBuf.DataFormat.Default)]
  85. [global::System.ComponentModel.DefaultValue(null)]
  86. public pomelo.item.MiniItem material
  87. {
  88. get { return _material; }
  89. set { _material = value; }
  90. }
  91. private int _isActive = default(int);
  92. /// <summary>
  93. /// 是否激活 1-激活
  94. /// </summary>
  95. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"isActive", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  96. [global::System.ComponentModel.DefaultValue(default(int))]
  97. public int isActive
  98. {
  99. get { return _isActive; }
  100. set { _isActive = value; }
  101. }
  102. private int _magicNum = default(int);
  103. /// <summary>
  104. /// 魔界威望
  105. /// </summary>
  106. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"magicNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  107. [global::System.ComponentModel.DefaultValue(default(int))]
  108. public int magicNum
  109. {
  110. get { return _magicNum; }
  111. set { _magicNum = value; }
  112. }
  113. private int _id = default(int);
  114. /// <summary>
  115. /// 唯一id
  116. /// </summary>
  117. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  118. [global::System.ComponentModel.DefaultValue(default(int))]
  119. public int id
  120. {
  121. get { return _id; }
  122. set { _id = value; }
  123. }
  124. private global::ProtoBuf.IExtension extensionObject;
  125. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  126. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  127. }
  128. //---------------------------------------------------------------------------------------
  129. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AllMastery")]
  130. public partial class AllMastery : global::ProtoBuf.IExtensible
  131. {
  132. public AllMastery() {}
  133. private readonly global::System.Collections.Generic.List<pomelo.area.Mastery> _masterys = new global::System.Collections.Generic.List<pomelo.area.Mastery>();
  134. [global::ProtoBuf.ProtoMember(1, Name=@"masterys", DataFormat = global::ProtoBuf.DataFormat.Default)]
  135. public global::System.Collections.Generic.List<pomelo.area.Mastery> masterys
  136. {
  137. get { return _masterys; }
  138. }
  139. private pomelo.item.MiniItem _ring = null;
  140. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ring", DataFormat = global::ProtoBuf.DataFormat.Default)]
  141. [global::System.ComponentModel.DefaultValue(null)]
  142. public pomelo.item.MiniItem ring
  143. {
  144. get { return _ring; }
  145. set { _ring = value; }
  146. }
  147. private string _needRingName = "";
  148. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"needRingName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  149. [global::System.ComponentModel.DefaultValue("")]
  150. public string needRingName
  151. {
  152. get { return _needRingName; }
  153. set { _needRingName = value; }
  154. }
  155. private int _needPlayerLevel = default(int);
  156. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"needPlayerLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  157. [global::System.ComponentModel.DefaultValue(default(int))]
  158. public int needPlayerLevel
  159. {
  160. get { return _needPlayerLevel; }
  161. set { _needPlayerLevel = value; }
  162. }
  163. private int _needPlayerUpLevel = default(int);
  164. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"needPlayerUpLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  165. [global::System.ComponentModel.DefaultValue(default(int))]
  166. public int needPlayerUpLevel
  167. {
  168. get { return _needPlayerUpLevel; }
  169. set { _needPlayerUpLevel = value; }
  170. }
  171. private int _costMagicNum = default(int);
  172. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"costMagicNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  173. [global::System.ComponentModel.DefaultValue(default(int))]
  174. public int costMagicNum
  175. {
  176. get { return _costMagicNum; }
  177. set { _costMagicNum = value; }
  178. }
  179. private int _curMagicNum = default(int);
  180. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"curMagicNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  181. [global::System.ComponentModel.DefaultValue(default(int))]
  182. public int curMagicNum
  183. {
  184. get { return _curMagicNum; }
  185. set { _curMagicNum = value; }
  186. }
  187. private int _ringLevel = default(int);
  188. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"ringLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  189. [global::System.ComponentModel.DefaultValue(default(int))]
  190. public int ringLevel
  191. {
  192. get { return _ringLevel; }
  193. set { _ringLevel = value; }
  194. }
  195. private int _canGet = default(int);
  196. /// <summary>
  197. /// 1-可以领取 0-不可以领取 2-已领取表示最后一个戒指
  198. /// </summary>
  199. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"canGet", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  200. [global::System.ComponentModel.DefaultValue(default(int))]
  201. public int canGet
  202. {
  203. get { return _canGet; }
  204. set { _canGet = value; }
  205. }
  206. private global::ProtoBuf.IExtension extensionObject;
  207. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  208. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  209. }
  210. //---------------------------------------------------------------------------------------
  211. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetMasteryInfoRequest")]
  212. public partial class GetMasteryInfoRequest : global::ProtoBuf.IExtensible
  213. {
  214. public GetMasteryInfoRequest() {}
  215. private global::ProtoBuf.IExtension extensionObject;
  216. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  217. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  218. }
  219. //---------------------------------------------------------------------------------------
  220. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetMasteryInfoResponse")]
  221. public partial class GetMasteryInfoResponse : global::ProtoBuf.IExtensible
  222. {
  223. public GetMasteryInfoResponse() {}
  224. private int _s2c_code;
  225. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  226. public int s2c_code
  227. {
  228. get { return _s2c_code; }
  229. set { _s2c_code = value; }
  230. }
  231. private string _s2c_msg = "";
  232. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  233. [global::System.ComponentModel.DefaultValue("")]
  234. public string s2c_msg
  235. {
  236. get { return _s2c_msg; }
  237. set { _s2c_msg = value; }
  238. }
  239. private pomelo.area.AllMastery _s2c_mastery = null;
  240. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_mastery", DataFormat = global::ProtoBuf.DataFormat.Default)]
  241. [global::System.ComponentModel.DefaultValue(null)]
  242. public pomelo.area.AllMastery s2c_mastery
  243. {
  244. get { return _s2c_mastery; }
  245. set { _s2c_mastery = value; }
  246. }
  247. private global::ProtoBuf.IExtension extensionObject;
  248. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  249. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  250. }
  251. //---------------------------------------------------------------------------------------
  252. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ActiveMasteryRequest")]
  253. public partial class ActiveMasteryRequest : global::ProtoBuf.IExtensible
  254. {
  255. public ActiveMasteryRequest() {}
  256. private int _c2s_pos;
  257. /// <summary>
  258. /// 专精部位
  259. /// </summary>
  260. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  261. public int c2s_pos
  262. {
  263. get { return _c2s_pos; }
  264. set { _c2s_pos = value; }
  265. }
  266. private global::ProtoBuf.IExtension extensionObject;
  267. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  268. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  269. }
  270. //---------------------------------------------------------------------------------------
  271. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ActiveMasteryResponse")]
  272. public partial class ActiveMasteryResponse : global::ProtoBuf.IExtensible
  273. {
  274. public ActiveMasteryResponse() {}
  275. private int _s2c_code;
  276. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  277. public int s2c_code
  278. {
  279. get { return _s2c_code; }
  280. set { _s2c_code = value; }
  281. }
  282. private string _s2c_msg = "";
  283. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  284. [global::System.ComponentModel.DefaultValue("")]
  285. public string s2c_msg
  286. {
  287. get { return _s2c_msg; }
  288. set { _s2c_msg = value; }
  289. }
  290. private pomelo.area.AllMastery _s2c_data = null;
  291. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  292. [global::System.ComponentModel.DefaultValue(null)]
  293. public pomelo.area.AllMastery s2c_data
  294. {
  295. get { return _s2c_data; }
  296. set { _s2c_data = value; }
  297. }
  298. private global::ProtoBuf.IExtension extensionObject;
  299. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  300. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  301. }
  302. //---------------------------------------------------------------------------------------
  303. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetRingRequest")]
  304. public partial class GetRingRequest : global::ProtoBuf.IExtensible
  305. {
  306. public GetRingRequest() {}
  307. private string _c2s_ringId;
  308. /// <summary>
  309. /// 要领取的魔戒ID
  310. /// </summary>
  311. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_ringId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  312. public string c2s_ringId
  313. {
  314. get { return _c2s_ringId; }
  315. set { _c2s_ringId = value; }
  316. }
  317. private global::ProtoBuf.IExtension extensionObject;
  318. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  319. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  320. }
  321. //---------------------------------------------------------------------------------------
  322. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetRingResponse")]
  323. public partial class GetRingResponse : global::ProtoBuf.IExtensible
  324. {
  325. public GetRingResponse() {}
  326. private int _s2c_code;
  327. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  328. public int s2c_code
  329. {
  330. get { return _s2c_code; }
  331. set { _s2c_code = value; }
  332. }
  333. private string _s2c_msg = "";
  334. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  335. [global::System.ComponentModel.DefaultValue("")]
  336. public string s2c_msg
  337. {
  338. get { return _s2c_msg; }
  339. set { _s2c_msg = value; }
  340. }
  341. private pomelo.area.AllMastery _s2c_data = null;
  342. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  343. [global::System.ComponentModel.DefaultValue(null)]
  344. public pomelo.area.AllMastery s2c_data
  345. {
  346. get { return _s2c_data; }
  347. set { _s2c_data = value; }
  348. }
  349. private global::ProtoBuf.IExtension extensionObject;
  350. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  351. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  352. }
  353. //---------------------------------------------------------------------------------------
  354. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MasteryRing")]
  355. public partial class MasteryRing : global::ProtoBuf.IExtensible
  356. {
  357. public MasteryRing() {}
  358. private pomelo.item.MiniItem _ring;
  359. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"ring", DataFormat = global::ProtoBuf.DataFormat.Default)]
  360. public pomelo.item.MiniItem ring
  361. {
  362. get { return _ring; }
  363. set { _ring = value; }
  364. }
  365. private int _needPlayerLevel = default(int);
  366. /// <summary>
  367. /// 需要的玩家等级
  368. /// </summary>
  369. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"needPlayerLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  370. [global::System.ComponentModel.DefaultValue(default(int))]
  371. public int needPlayerLevel
  372. {
  373. get { return _needPlayerLevel; }
  374. set { _needPlayerLevel = value; }
  375. }
  376. private int _needPlayerUpLevel = default(int);
  377. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"needPlayerUpLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  378. [global::System.ComponentModel.DefaultValue(default(int))]
  379. public int needPlayerUpLevel
  380. {
  381. get { return _needPlayerUpLevel; }
  382. set { _needPlayerUpLevel = value; }
  383. }
  384. private int _costMagicNum = default(int);
  385. /// <summary>
  386. /// 需要的魔界威望
  387. /// </summary>
  388. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"costMagicNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  389. [global::System.ComponentModel.DefaultValue(default(int))]
  390. public int costMagicNum
  391. {
  392. get { return _costMagicNum; }
  393. set { _costMagicNum = value; }
  394. }
  395. private string _needRingName = "";
  396. /// <summary>
  397. /// 需要穿戴的魔戒
  398. /// </summary>
  399. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"needRingName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  400. [global::System.ComponentModel.DefaultValue("")]
  401. public string needRingName
  402. {
  403. get { return _needRingName; }
  404. set { _needRingName = value; }
  405. }
  406. private int _isGet = default(int);
  407. /// <summary>
  408. /// 1-已经领取了 0-没有领取
  409. /// </summary>
  410. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"isGet", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  411. [global::System.ComponentModel.DefaultValue(default(int))]
  412. public int isGet
  413. {
  414. get { return _isGet; }
  415. set { _isGet = value; }
  416. }
  417. private global::ProtoBuf.IExtension extensionObject;
  418. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  419. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  420. }
  421. //---------------------------------------------------------------------------------------
  422. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MasteryRingRequest")]
  423. public partial class MasteryRingRequest : global::ProtoBuf.IExtensible
  424. {
  425. public MasteryRingRequest() {}
  426. private global::ProtoBuf.IExtension extensionObject;
  427. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  428. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  429. }
  430. //---------------------------------------------------------------------------------------
  431. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MasteryRingResponse")]
  432. public partial class MasteryRingResponse : global::ProtoBuf.IExtensible
  433. {
  434. public MasteryRingResponse() {}
  435. private int _s2c_code;
  436. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  437. public int s2c_code
  438. {
  439. get { return _s2c_code; }
  440. set { _s2c_code = value; }
  441. }
  442. private string _s2c_msg = "";
  443. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  444. [global::System.ComponentModel.DefaultValue("")]
  445. public string s2c_msg
  446. {
  447. get { return _s2c_msg; }
  448. set { _s2c_msg = value; }
  449. }
  450. private readonly global::System.Collections.Generic.List<pomelo.area.MasteryRing> _s2c_ring = new global::System.Collections.Generic.List<pomelo.area.MasteryRing>();
  451. [global::ProtoBuf.ProtoMember(3, Name=@"s2c_ring", DataFormat = global::ProtoBuf.DataFormat.Default)]
  452. public global::System.Collections.Generic.List<pomelo.area.MasteryRing> s2c_ring
  453. {
  454. get { return _s2c_ring; }
  455. }
  456. private global::ProtoBuf.IExtension extensionObject;
  457. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  458. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  459. }
  460. //---------------------------------------------------------------------------------------
  461. /// <summary>
  462. /// 专精传送
  463. /// </summary>
  464. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MasteryDeliverRequest")]
  465. public partial class MasteryDeliverRequest : global::ProtoBuf.IExtensible
  466. {
  467. public MasteryDeliverRequest() {}
  468. private int _c2s_pos;
  469. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pos", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  470. public int c2s_pos
  471. {
  472. get { return _c2s_pos; }
  473. set { _c2s_pos = value; }
  474. }
  475. private global::ProtoBuf.IExtension extensionObject;
  476. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  477. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  478. }
  479. //---------------------------------------------------------------------------------------
  480. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MasteryDeliverResponse")]
  481. public partial class MasteryDeliverResponse : global::ProtoBuf.IExtensible
  482. {
  483. public MasteryDeliverResponse() {}
  484. private int _s2c_code;
  485. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  486. public int s2c_code
  487. {
  488. get { return _s2c_code; }
  489. set { _s2c_code = value; }
  490. }
  491. private string _s2c_msg = "";
  492. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  493. [global::System.ComponentModel.DefaultValue("")]
  494. public string s2c_msg
  495. {
  496. get { return _s2c_msg; }
  497. set { _s2c_msg = value; }
  498. }
  499. private global::ProtoBuf.IExtension extensionObject;
  500. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  501. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  502. }
  503. }