Starsector API
Loading...
Searching...
No Matches
MarketConnectionAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api.campaign.econ;
2
3import com.fs.starfarer.api.combat.StatBonus;
4
13public interface MarketConnectionAPI {
14 String getId();
15
16 float getModifiedPrice(float price);
17 float getSmugglePrice(float price);
18 StatBonus getSmugglingMod();
19 StatBonus getPriceMod();
21 void setAllTradeIsSmuggling(boolean allTradeIsSmuggling);
22
25
26 boolean isEnabled();
27 void setEnabled(boolean enabled);
28}
void setAllTradeIsSmuggling(boolean allTradeIsSmuggling)