how can I set the type here to accept any class th...
# getting-started
w
how can I set the type here to accept any class that implements LAObject?
var clazz: Class<LAObject>? = null
d
Class<out LAObject>
w
thx