blob: 6611ec2e9fa2d8fde07c18f0c0e07fe773bf64ab [file] [log] [blame] [edit]
enum class Style(val value: String) {
SHEET("foo") {
override val exitAnimation: String
get() = "bar"
};
abstract val exitAnimation: String
}