Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 550 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 550 Bytes

Spock Game 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")
}