circular array is fixed and tested

This commit is contained in:
minjaesong
2019-01-09 05:43:56 +09:00
parent adf45b1f68
commit 808797760d
7 changed files with 102 additions and 27 deletions

View File

@@ -52,6 +52,14 @@ task game(type: JavaExec) {
description = "Launches the game. Should be the same as 'gradlew run'."
}
task gamedebug(type: JavaExec) {
classpath sourceSets.main.runtimeClasspath
main = 'net.torvald.terrarum.AppLoader'
group = "Application"
description = "Launches the game with debuy key."
args = ["isdev=true"]
}
task spriteassembler(type: JavaExec) {
classpath sourceSets.main.runtimeClasspath
main = 'net.torvald.spriteassembler.SpriteAssemblerAppKt'