v0.7.4b: cleaned up a few leftovers from new init logic

This commit is contained in:
Evan Debenham
2019-08-01 19:09:50 -04:00
parent 3e815a3165
commit 7885da4b99
6 changed files with 16 additions and 28 deletions

View File

@@ -21,12 +21,14 @@
package com.watabou.utils;
import com.badlogic.gdx.utils.TimeUtils;
public class SystemTime {
public static long now;
public static void tick() {
now = System.currentTimeMillis();
now = TimeUtils.millis();
}
}