Starsector API
Loading...
Searching...
No Matches
CommodityFlowAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api.campaign.econ;
2
3import java.util.List;
4
5public interface CommodityFlowAPI {
6
7 List<TransferTotalAPI> getTopImports(int count);
8 List<TransferTotalAPI> getTopExports(int count);
9
12
15
16 List<TransferTotalAPI> getIncoming();
17 List<TransferTotalAPI> getOutgoing();
18}
List< TransferTotalAPI > getTopImports(int count)
List< TransferTotalAPI > getTopExports(int count)