Added Zutil as dependency and added new ground type datafile

This commit is contained in:
Ziver Koc 2020-01-04 20:03:57 +01:00
parent c51a473120
commit 3b9422346a
11 changed files with 80 additions and 39 deletions

View file

@ -6,6 +6,7 @@ sourceCompatibility = 1.8
sourceSets {
main {
java.srcDirs = [ "src/" ]
resources.srcDirs= ["resources/"]
}
test {
java.srcDirs = ["test/"]
@ -13,9 +14,12 @@ sourceSets {
}
dependencies {
api "com.badlogicgames.gdx:gdx:$gdxVersion"
implementation 'se.koc:zutil:1.0.236'
testImplementation "org.junit.jupiter:junit-jupiter-engine:5.5.2"
testImplementation "org.junit.platform:junit-platform-runner:1.5.2"
api "com.badlogicgames.gdx:gdx:$gdxVersion"
}
test {