Starsector API
Loading...
Searching...
No Matches
ShipAIConfig.java
Go to the documentation of this file.
1package com.fs.starfarer.api.combat;
2
3public class ShipAIConfig implements Cloneable {
4
5
6 @Override
7 public ShipAIConfig clone() {
8 try {
9 return (ShipAIConfig) super.clone();
10 } catch (CloneNotSupportedException e) {
11 return null; // should not happen
12 }
13 }
14
15 public boolean alwaysStrafeOffensively = false;
16 public boolean backingOffWhileNotVentingAllowed = true;
17 public boolean turnToFaceWithUndamagedArmor = true;
18
19 public boolean burnDriveIgnoreEnemies = false;
20
21 public String personalityOverride = null;
22
23 public ShipAIConfig() {
24 }
25
36}