Starsector API
Loading...
Searching...
No Matches
ShipSkillEffect.java
Go to the documentation of this file.
1package com.fs.starfarer.api.characters;
2
3import com.fs.starfarer.api.combat.MutableShipStatsAPI;
4import com.fs.starfarer.api.combat.ShipAPI.HullSize;
5
11public interface ShipSkillEffect extends LevelBasedEffect {
12 void apply(MutableShipStatsAPI stats, HullSize hullSize, String id, float level);
13 void unapply(MutableShipStatsAPI stats, HullSize hullSize, String id);
14}
void unapply(MutableShipStatsAPI stats, HullSize hullSize, String id)
void apply(MutableShipStatsAPI stats, HullSize hullSize, String id, float level)