Starsector API
Loading...
Searching...
No Matches
MarketConditionSpecAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api.characters;
2
3public interface MarketConditionSpecAPI {
4
5 float getOrder();
6 String getId();
7 String getName();
8 String getDesc();
9 String getIcon();
11 void setIcon(String icon);
12 boolean isPlanetary();
13 boolean isDecivRemove();
14 void setDecivRemove(boolean decivRemove);
15 void setId(String id);
16 void setName(String name);
17 void setDesc(String desc);
18 void setOrder(float order);
19 void setPlanetary(boolean planetary);
20}