You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
633 B
Kotlin
21 lines
633 B
Kotlin
|
|
project(":wizard-client:wizard-client-libgdx:desktop") {
|
|
apply(plugin = "java-library")
|
|
|
|
dependencies {
|
|
implementation(project(":wizard-client:wizard-client-libgdx:core"))
|
|
api("com.badlogicgames.gdx:gdx-backend-lwjgl3:1.10.0")
|
|
api("com.badlogicgames.gdx:gdx-platform:1.10.0:natives-desktop")
|
|
api("com.badlogicgames.gdx:gdx-box2d-platform:1.10.0:natives-desktop")
|
|
}
|
|
}
|
|
|
|
project(":wizard-client:wizard-client-libgdx:core") {
|
|
apply(plugin = "java-library")
|
|
|
|
dependencies {
|
|
api( "com.badlogicgames.gdx:gdx:1.10.0")
|
|
api("com.badlogicgames.gdx:gdx-box2d:1.10.0")
|
|
}
|
|
}
|