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