item.EQuality.cs 770 B

1234567891011121314151617181920212223242526272829303132333435
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. // Changes to this file may cause incorrect behavior and will be lost if
  5. // the code is regenerated.
  6. // </auto-generated>
  7. //------------------------------------------------------------------------------
  8. namespace cfg.item
  9. {
  10. public enum EQuality
  11. {
  12. /// <summary>
  13. /// 最差品质
  14. /// </summary>
  15. WHITE = 1,
  16. /// <summary>
  17. /// 蓝色的
  18. /// </summary>
  19. BLUE = 2,
  20. /// <summary>
  21. /// 紫色的
  22. /// </summary>
  23. PURPLE = 3,
  24. /// <summary>
  25. /// 最高品质
  26. /// </summary>
  27. RED = 4,
  28. }
  29. }