2016-02-23 08:02:06 -05:00
|
|
|
package diveengine2d;
|
|
|
|
|
|
|
|
|
|
public class Time {
|
|
|
|
|
|
|
|
|
|
public static long nanos;
|
|
|
|
|
public static int framesInCurrentSecond;
|
|
|
|
|
public static int FPS = 0;
|
|
|
|
|
public static double tickTime = 0;
|
|
|
|
|
public static double timeScale = 1;
|
|
|
|
|
public static double deltaTime = 0;
|
|
|
|
|
public static long nextSecond = System.currentTimeMillis() + 1000, startTime = 0;
|
2016-02-23 23:10:45 -05:00
|
|
|
public static double timedFramesCurrent;
|
2016-03-13 14:36:09 -04:00
|
|
|
|
|
|
|
|
public static long renderTime;
|
2016-02-23 08:02:06 -05:00
|
|
|
}
|