removing unused and failed opus impl attempts

This commit is contained in:
minjaesong
2018-12-02 22:45:08 +09:00
parent 158df1cac0
commit 9282aecd0f
7 changed files with 25 additions and 80 deletions

View File

@@ -1,6 +1,7 @@
package net.torvald.terrarum.tests
import net.torvald.terrarum.modulebasegame.gameworld.WorldTime
//import org.junit.Test
/**
* Created by minjaesong on 2018-12-02.
@@ -11,10 +12,26 @@ class TestWorldTime {
//@Test
fun testEndOfYear() {
repeat(3) {
println(time.getShortTime())
repeat(5) {
println(time.getFormattedTime())
time.addTime(1)
}
println()
time.addTime(86400 - 5)
repeat(5) {
println(time.getFormattedTime())
time.addTime(1)
}
}
}
fun main(args: Array<String>) {
TestWorldTime().testEndOfYear()
}