Starsector API
Loading...
Searching...
No Matches
FleetGoal.java
Go to the documentation of this file.
1
4package com.fs.starfarer.api.fleet;
5
12public enum FleetGoal {
13 ATTACK("goal_Attack"),
14
15// DEFEND("goal_Defend"),
16
17 ESCAPE("goal_Escape");
18
19
20
21 private String warroomTooltipId;
22
23 private FleetGoal(String warroomTooltipId) {
24 this.warroomTooltipId = warroomTooltipId;
25 }
26 public String getWarroomTooltipId() {
27 return warroomTooltipId;
28 }
29
30}