Starsector API
Loading...
Searching...
No Matches
ImmigrationPlugin.java
Go to the documentation of this file.
1package com.fs.starfarer.api.campaign.econ;
2
3
4
5public interface ImmigrationPlugin {
6
12 void advance(float days, boolean uiUpdateOnly);
13
14
15 float getWeightForMarketSize(float size);
16 //PopulationComposition computeIncoming();
17
18 //float getIncentiveCostDistMult();
19
20 //int getCreditsForOnePercentPopulationIncrease();
21 float getFractionForPopulationPoints(float points);
22 float getPopulationPointsForFraction(float fraction);
23
24
25 //float getIncentivePercentPerMonth();
26
27}
void advance(float days, boolean uiUpdateOnly)