Starsector API
Loading...
Searching...
No Matches
DwellerShipCreator.java
Go to the documentation of this file.
1package com.fs.starfarer.api.impl.combat.dweller;
2
3import com.fs.starfarer.api.combat.MutableShipStatsAPI;
4import com.fs.starfarer.api.combat.ShipAPI;
5import com.fs.starfarer.api.combat.ShipAPI.HullSize;
6
7public interface DwellerShipCreator {
8 public void initBeforeShipCreation(HullSize hullSize, MutableShipStatsAPI stats, String id);
9 public void initAfterShipCreation(ShipAPI ship, String id);
10 public void initAfterShipAddedToCombatEngine(ShipAPI ship, String id);
11 public void initInCombat(ShipAPI ship);
12}
void initBeforeShipCreation(HullSize hullSize, MutableShipStatsAPI stats, String id)
void initAfterShipAddedToCombatEngine(ShipAPI ship, String id)