blob: dda485c8186481b2c3b46fa6648f0b6f2e8af26c [file] [log] [blame]
enum class Color(val rgb : Int) {
RED(0xFF000),
GREEN(0x00FF00),
BLUE(0x0000FF)
// the end
}