39 lines
717 B
Java
39 lines
717 B
Java
package com.ubt.jimu.controller.data.action;
|
|
|
|
import com.ubt.jimu.base.data.CtrlMotionType;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class RunningItem {
|
|
private int a;
|
|
private CtrlMotionType b;
|
|
private long c;
|
|
private long d;
|
|
|
|
public RunningItem(int i, CtrlMotionType ctrlMotionType, long j, long j2) {
|
|
this.a = i;
|
|
this.b = ctrlMotionType;
|
|
this.c = j;
|
|
this.d = j2;
|
|
}
|
|
|
|
public boolean a(long j) {
|
|
return j - this.d > this.c;
|
|
}
|
|
|
|
public CtrlMotionType b() {
|
|
return this.b;
|
|
}
|
|
|
|
public long c() {
|
|
return this.d;
|
|
}
|
|
|
|
public int a() {
|
|
return this.a;
|
|
}
|
|
|
|
public void b(long j) {
|
|
this.d = j;
|
|
}
|
|
}
|