TitleRarityEnum.cs 256 B

12345678910111213141516
  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. VeryRare = 1,
  10. Rare = 2,
  11. Common = 3,
  12. VeryCommon = 4,
  13. Allways = 6
  14. }
  15. }