Setup for RTS AI
This commit is contained in:
@@ -36,8 +36,8 @@ public class BaseAI{
|
||||
private int lastX, lastY, lastW, lastH;
|
||||
private boolean triedWalls, foundPath;
|
||||
|
||||
TeamData data;
|
||||
Interval timer = new Interval(4);
|
||||
final TeamData data;
|
||||
final Interval timer = new Interval(4);
|
||||
|
||||
IntSet path = new IntSet();
|
||||
IntSet calcPath = new IntSet();
|
||||
|
||||
15
core/src/mindustry/ai/RtsAI.java
Normal file
15
core/src/mindustry/ai/RtsAI.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package mindustry.ai;
|
||||
|
||||
import mindustry.game.Teams.*;
|
||||
|
||||
public class RtsAI{
|
||||
final TeamData data;
|
||||
|
||||
public RtsAI(TeamData data){
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public void update(){
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user