summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2022-08-29 00:42:17 +0600
committerilotterytea <iltsu@alright.party>2022-08-29 00:42:17 +0600
commit5ab73842faf5a3f7dbe5867785ec26e4739bfce3 (patch)
treebbf1426c38ccad88403d57047d548b6a0ddbb356 /build.gradle
parent42f5238c3341437e9d55f14715033b03aad60fc8 (diff)
gltf and typinglabel
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index bde0a96..06142dd 100644
--- a/build.gradle
+++ b/build.gradle
@@ -10,7 +10,6 @@ buildscript {
}
dependencies {
//classpath 'com.android.tools.build:gradle:7.0.4'
-
}
}
@@ -25,6 +24,8 @@ allprojects {
roboVMVersion = '2.3.16'
box2DLightsVersion = '1.5'
ashleyVersion = '1.7.4'
+ typingLabelVersion = '1.3.0'
+ gltfVersion = '-SNAPSHOT'
aiVersion = '1.8.2'
gdxControllersVersion = '2.2.1'
}
@@ -38,6 +39,7 @@ allprojects {
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
maven { url "https://jitpack.io" }
}
+
}
project(":desktop") {
@@ -74,6 +76,9 @@ project(":core") {
dependencies {
api "com.badlogicgames.gdx:gdx:$gdxVersion"
+ api "com.rafaskoberg.gdx:typing-label:$typingLabelVersion"
+ api "com.github.mgsx-dev.gdx-gltf:gltf:$gltfVersion"
+ implementation 'com.google.code.gson:gson:2.9.1'
}
}