simplified a structure of UIs a bit

This commit is contained in:
minjaesong
2017-07-16 23:15:32 +09:00
parent bf47b82445
commit d6f2f4158c
29 changed files with 321 additions and 371 deletions

View File

@@ -144,7 +144,7 @@ class WorldTime(initTime: Long = 0L) {
fun update(delta: Float) {
//time
realMillisec += delta
realMillisec += delta * 1000.0
if (realMillisec >= 1000.0 / REAL_SEC_TO_GAME_SECS) {
realMillisec -= 1000.0 / REAL_SEC_TO_GAME_SECS
TIME_T += timeDelta