LeHaine / kiwi

Kotlin Multiplatform library for use with Korge mainly.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NO LONGER MAINTAINED - SWITCHED IN FAVOR OF LittleKt

Release

About

My personal library for use with Kotlin Multiplatform and Korge that I call Kiwi. Lots of the functionality is based off of Deepnights gameBase which I've used extensively (and loved) for awhile but just kotlinized.

Versioning

The version isn't following semver or some sort of structured versioning. You can grab a specific commit using the commit hash or just use the nightly. See [Install][] section.

Install

In your build.gradle.kts:

Add the Jitpack repository:

	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

Add the dependency:

	dependencies {
        implementation 'com.lehaine.kiwi:kiwi:${versionOrCommitHash}'
    }

If you want the nightly / most recent commit:

	dependencies {
        implementation 'com.lehaine.kiwi:kiwi:master-SNAPSHOT'
    }

About

Kotlin Multiplatform library for use with Korge mainly.

License:MIT License


Languages

Language:Kotlin 99.1%Language:Shell 0.9%