I have the following ```fun getSize(clazz: KClass...
# announcements
e
I have the following
Copy code
fun getSize(clazz: KClass<*>): Int

inline fun <reified T> store(texelCoord: Vec3i, layer: Int, face: Int, level: Int, texel: T) {
        val blockSize = getSize(texel::class)
}
on
texel
I get:
Expression in a class literal has a nullable type 'T', use !! to make the type non-nullabble