Brychan Dempsey
b1efb9802d
Leaves only the framework in the compiled clause. Find the removed files in ../examples/misc/
16 lines
284 B
Java
16 lines
284 B
Java
package nz.ac.massey.javaecs;
|
|
|
|
public class FrameRateSystem extends ECSSystem{
|
|
@Override
|
|
void init() {}
|
|
|
|
@Override
|
|
void update() {}
|
|
|
|
void update(double dt, double idleTime){
|
|
System.out.print(String.format("dt: %.3g (%.3g idle) ", dt, idleTime));
|
|
}
|
|
|
|
|
|
}
|