001package com.fs.starfarer.api.campaign.econ;
002
003public interface MarketShareDataAPI {
004
005        boolean isSourceIsIllegal();
006        void setSourceIsIllegal(boolean sourceIsIllegal);
007        float getExportMarketShare();
008        void setExportMarketShare(float marketShare);
009        CommoditySourceType getSource();
010        void setSource(CommoditySourceType source);
011        float getMarketValueFraction();
012        void setMarketValueFraction(float marketValueFraction);
013
014}