Files
Mindustry/core/src/mindustry/entities/TargetPriority.java
Anuken b683c3f8d5 ...
2020-05-21 21:15:39 -04:00

9 lines
241 B
Java

package mindustry.entities;
/** A higher ordinal means a higher priority. Higher priority blocks will always get targeted over those of lower priority, regardless of distance. */
public enum TargetPriority{
base,
turret,
core
}