| 12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace AlternativeTitles.ConfigEnums
- {
- public enum TitleRarityEnum
- {
- VeryRare = 1,
- Rare = 2,
- Common = 3,
- VeryCommon = 4,
- Allways = 6
- }
- }
|