gradle migration 1

This commit is contained in:
minjaesong
2018-12-02 19:31:38 +09:00
parent 26f7eba339
commit 158df1cac0
21 changed files with 822 additions and 8 deletions

View File

@@ -0,0 +1,20 @@
package net.torvald.terrarum.tests
import net.torvald.terrarum.modulebasegame.gameworld.WorldTime
/**
* Created by minjaesong on 2018-12-02.
*/
class TestWorldTime {
val time = WorldTime(WorldTime.DAY_LENGTH * 118L + 86398)
//@Test
fun testEndOfYear() {
repeat(3) {
println(time.getShortTime())
time.addTime(1)
}
}
}