Starsector API
Loading...
Searching...
No Matches
OfficerLevelupPlugin.java
Go to the documentation of this file.
1package com.fs.starfarer.api.plugins;
2
3import java.util.List;
4import java.util.Random;
5
6import com.fs.starfarer.api.characters.PersonAPI;
7
8public interface OfficerLevelupPlugin {
9
10 long getXPForLevel(int level);
11 int getMaxLevel(PersonAPI person);
12 int getMaxEliteSkills(PersonAPI person);
13
14 List<String> pickLevelupSkills(PersonAPI person, Random random);
15}
List< String > pickLevelupSkills(PersonAPI person, Random random)