soywiz
soywiz
Right now, it is written in C as a cinterop: https://github.com/korlibs/korge-next/blob/42ced9a8d18a28ca7aa021681be36108e1114457/korio/src/nativeInterop/cinterop/win32ssl.def
```kotlin class MyScene : Scene() { override suspend fun SContainer.sceneMain() { val view = circle(16.0, fill = Colors.RED).xy(100, 100) //val view = image(resourcesVfs["korge.png"].readBitmap().toBMP32().scaleLinear(0.1, 0.1)) { scale = 0.1 } //speed...
Would be nice to have a sample showing how to create an ECS system / supporting MVU paradigm. If required, after validated as a sample, we can later create a...