8000 GitHub - Laxystem/Spock: Kotlin/Multiplatform Concurrent Game Engine
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ Spock Public

Kotlin/Multiplatform Concurrent Game Engine

License

Notifications You must be signed in to change notification settings

Laxystem/Spock

10000

Repository files navigation

Spock Engine

Caution

Spock is in alpha. Backwards compatibility is intended but not guaranteed.

Maven

All modules are available on maven central.

// 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")
}
0