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

70 lines
1.3 KiB
Java

package com.ubt.jimu.controller.data.action;
import java.util.List;
import java.util.Map;
/* loaded from: classes.dex */
public class Action {
private int a;
private int b;
private int c;
private Map<Integer, Integer> d;
private Map<Integer, TurnData> e;
private Map<Integer, MotorData> f;
public void a(int i) {
this.a = i;
}
public void a(List<Integer> list) {
}
public void b(int i) {
this.b = i;
}
public void c(int i) {
this.c = i;
}
public int d() {
return this.b;
}
public Map<Integer, TurnData> e() {
return this.e;
}
public int f() {
return this.c;
}
public String toString() {
return "Action{index=" + this.a + ", sportTime=" + this.b + ", waitTime=" + this.c + ", rotas=" + this.d + ", turns=" + this.e + ", motors=" + this.f + '}';
}
public void a(Map<Integer, MotorData> map) {
this.f = map;
}
public void b(Map<Integer, Integer> map) {
this.d = map;
}
public Map<Integer, Integer> c() {
return this.d;
}
public int a() {
return this.c + this.b;
}
public Map<Integer, MotorData> b() {
return this.f;
}
public void c(Map<Integer, TurnData> map) {
this.e = map;
}
}