blob: e9796cc08017d271252c1a5c52bee426fd232b1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*
* Timer.java
* Copyright (C) 2005
*/
package jake2.sys;
import jake2.Globals;
import jake2.qcommon.Com;
public abstract class Timer {
abstract public long currentTimeMillis();
static Timer t;
static {
try {
t = new NanoTimer();
} catch (Throwable e) {
try {
t = new HighPrecisionTimer();
} catch (Throwable e1) {
t = new StandardTimer();
}
}
Com.Println("using " + t.getClass().getName());
}
public static int Milliseconds() {
return Globals.curtime = (int)(t.currentTimeMillis());
}
}
|