TitleRarityEnum.cs 293 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace AlternativeTitles.ConfigEnums
  6. {
  7. public enum TitleRarityEnum
  8. {
  9. UltraRare = 0,
  10. VeryRare = 1,
  11. Rare = 2,
  12. Common = 3,
  13. VeryCommon = 4,
  14. UltraCommon = 5,
  15. Only = 6
  16. }
  17. }