https://github.com/cubxity/agoneskt
Kotlin API wrapper for Google Agones.
https://github.com/cubxity/agoneskt
agones grpc grpc-kotlin kotlin
Last synced: 3 months ago
JSON representation
Kotlin API wrapper for Google Agones.
- Host: GitHub
- URL: https://github.com/cubxity/agoneskt
- Owner: Cubxity
- License: apache-2.0
- Created: 2021-02-28T16:06:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-02-28T16:00:03.000Z (over 4 years ago)
- Last Synced: 2025-05-15T22:40:22.688Z (about 1 year ago)
- Topics: agones, grpc, grpc-kotlin, kotlin
- Language: Kotlin
- Homepage:
- Size: 76.2 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AgonesKt
Kotlin API wrapper for Google [Agones](https://agones.dev).
## Example
```kotlin
import dev.cubxity.libs.agones.AgonesSDK
suspend fun main() {
AgonesSDK().use { sdk ->
sdk.ready()
// ...
}
}
```
## Getting Started
See [Agones Client SDK documentation](https://agones.dev/site/docs/guides/client-sdks/).
**Gradle:**
```kotlin
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")
// ...
}
```