Created tools module

Created tools module
Ported Tester404 font metrics tool
This commit is contained in:
Collin Smith
2019-04-18 02:15:02 -07:00
parent 69b4993207
commit 2fdfd87f6f
4 changed files with 369 additions and 1 deletions

View File

@ -61,6 +61,26 @@ project(":tester") {
}
}
project(":tools") {
apply plugin: "java"
ext {
visuiVersion = '1.4.0'
}
dependencies {
compile project(":core")
compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
}
dependencies {
compile group: 'commons-cli', name: 'commons-cli', version: cliVersion
compile "com.kotcrab.vis:vis-ui:$visuiVersion"
}
}
project(":mapbuilder") {
apply plugin: "java"