Starsector API
Loading...
Searching...
No Matches
ActionStage.java
Go to the documentation of this file.
1package com.fs.starfarer.api.impl.campaign.intel.raid;
2
3
4public abstract class ActionStage extends BaseRaidStage {
5
6 public ActionStage(RaidIntel raid) {
7 super(raid);
8 }
9
10 @Override
11 public void notifyStarted() {
13 }
14
15 protected void updateRoutes() {
16 }
17
18 @Override
19 protected void updateStatus() {
20 super.updateStatus();
21 }
22
23
24 public void advance(float amount) {
25 super.advance(amount);
26 }
27
28 public abstract boolean isPlayerTargeted();
29}