27 lines
649 B
Java
27 lines
649 B
Java
package com.ubt.jimu.controller.data.command;
|
|
|
|
import com.ubt.jimu.controller.manager.ICommandExecutor;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class AngleCommand extends MoveCommand {
|
|
private Map<Integer, Integer> a;
|
|
private int b;
|
|
private int c;
|
|
|
|
public AngleCommand(Map<Integer, Integer> map, int i, int i2) {
|
|
this.c = i;
|
|
this.a = map;
|
|
this.b = i2;
|
|
}
|
|
|
|
public int a() {
|
|
return this.c;
|
|
}
|
|
|
|
@Override // com.ubt.jimu.controller.data.command.MoveCommand
|
|
public void a(ICommandExecutor iCommandExecutor) {
|
|
iCommandExecutor.a(this.a, a(), this.b);
|
|
}
|
|
}
|