001package com.fs.starfarer.api.characters;
002
003import com.fs.starfarer.api.combat.MutableShipStatsAPI;
004import com.fs.starfarer.api.combat.ShipAPI.HullSize;
005
006/**
007 * @author Alex Mosolov
008 *
009 * Copyright 2012 Fractal Softworks, LLC
010 */
011public interface ShipSkillEffect extends LevelBasedEffect {
012        void apply(MutableShipStatsAPI stats, HullSize hullSize, String id, float level);
013        void unapply(MutableShipStatsAPI stats, HullSize hullSize, String id);
014}