jimu-decompiled/sources/com/ubt/jimu/controller/data/action/RunningItem.java
2025-05-13 19:24:51 +02:00

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;
}
}