An open API service indexing awesome lists of open source software.

https://github.com/laxystem/spock

Kotlin/Multiplatform Concurrent Game Engine
https://github.com/laxystem/spock

game-development game-engine kotlin kotlin-multiplatform webassembly webgpu wgpu

Last synced: 5 months ago
JSON representation

Kotlin/Multiplatform Concurrent Game Engine

Awesome Lists containing this project

README

        

# Spock Engine

> [!NOTE]
> Spock is [developed on Codeberg](https://codeberg.org/Laxystem/Spock), and [mirrored on GitHub](https://GitHub.com/Laxystem/Spock).

> [!CAUTION]
> Spock is in alpha.
> Backwards compatibility is intended but not guaranteed.

## Maven

All modules are available on maven central.

```kotlin
// build.gradle.kts

repositories.mavenCentral()

val spock: String by properties

dependencies {
// core
implementation("quest.laxla:spock:$spock")

// any other module, e.g. util
implementation("quest.laxla:spock-util:$spock")
}
```