Cubxity / AgonesKt

Kotlin API wrapper for Google Agones.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AgonesKt

Kotlin API wrapper for Google Agones.

Example

import dev.cubxity.libs.agones.AgonesSDK

suspend fun main() {
    AgonesSDK().use { sdk ->
        sdk.ready()
        // ...
    }
}

Getting Started

See Agones Client SDK documentation.

Gradle:

dependencies {
    // ...
    
    // Replace -SNAPSHOT with the build
    api("com.github.Cubxity", "AgonesKt", "-SNAPSHOT")

    // Choose your gRPC runtime
    runtimeOnly("io.grpc", "grpc-netty", "1.37.0")
}

repositories {
    mavenCentral()
    maven("https://jitpack.io")
    // ...
}

About

Kotlin API wrapper for Google Agones.

License:Apache License 2.0


Languages

Language:Kotlin 100.0%