15 lines
329 B
Java
15 lines
329 B
Java
package mindustry.entities.comp;
|
|
|
|
import arc.util.*;
|
|
import mindustry.annotations.Annotations.*;
|
|
|
|
@Component
|
|
abstract class TimerComp{
|
|
transient Interval timer = new Interval(6);
|
|
|
|
public boolean timer(int index, float time){
|
|
if(Float.isInfinite(time)) return false;
|
|
return timer.get(index, time);
|
|
}
|
|
}
|