d218b88106
(this crashes the compiler otherwise)
11 lines
252 B
Kotlin
11 lines
252 B
Kotlin
import kotlinx.cinterop.*
|
|
|
|
class Vertex constructor(rawPtr: NativePtr) : CStructVar(rawPtr) {
|
|
var x: Float = 0f
|
|
var y: Float = 0f
|
|
var r: Float = 0f
|
|
var g: Float = 0f
|
|
var b: Float = 0f
|
|
companion object : CStructVar.Type(40, 8)
|
|
}
|