I'm developing an app which having level and each level will have different symbol and background color. For example, level 1 will have R.drawable.circle, R.drawable.red_background. Is it possible to store in enum with range like
enum class LevelEnum(levelSymbol: Int, levelColor: Int) {
1..21(R.drawable.circle, R.drawable.red_background),
22..50(R.drawable.rectangle, R.drawable.blue_background),
....
}