Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ushiosan23/gdl_utils

Utilities to create a multi-version game management and execution application from Godot engine.
https://github.com/ushiosan23/gdl_utils

godot java utilities

Last synced: 1 day ago
JSON representation

Utilities to create a multi-version game management and execution application from Godot engine.

Awesome Lists containing this project

README

        

# Godot Launcher Utilities (gdl_utils)

## Javadoc
[![javadoc](https://javadoc.io/badge2/com.github.ushiosan23/gdl_utils/javadoc.svg)](https://javadoc.io/doc/com.github.ushiosan23/gdl_utils)

## Versions

See all changelog: [here](./CHANGELOG.md)

- [0.2.0](https://github.com/Ushiosan23/gdl_utils/releases/tag/v0.2.0) __(Latest)__
- [0.1.0](https://github.com/Ushiosan23/gdl_utils/releases/tag/v0.1.0)

## Maven project

```xml


com.github.ushiosan23
gdl_utils
x.x.x

```

## Gradle project

### Groovy DSL

```groovy
// build.gradle

dependencies {
implementation 'com.github.ushiosan23:gdl_utils:x.x.x'
/* Another dependencies */
}
```

### Kotlin DSL

```kotlin
// build.gradle.kts

dependencies {
implementation("com.github.ushiosan23:gdl_utils:x.x.x")
/* Another dependencies */
}
```