You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
339 B
Kotlin

package me.eater.threedom.dom.event
import me.eater.threedom.dom.INode
sealed class NodeClassListUpdate {
abstract val node: INode<*>
class Removed(val classNames: Set<String>, override val node: INode<*>): NodeClassListUpdate()
class Added(val classNames: Set<String>, override val node: INode<*>): NodeClassListUpdate()
}