I want to have an enum and each element of the enum has its own structure?
Example:
public enum Rarity : Color
{
Rare = new Color(255,255,255),
}
Color color = Rarity.Rare
I know that you cannot enter anything other than numbers, but how can this be done so that it works, is it possible without enum?