Starsector API
Loading...
Searching...
No Matches
TerrainSpecAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api.loading;
2
3import java.util.Set;
4
5import org.json.JSONObject;
6
7import com.fs.starfarer.api.campaign.CampaignTerrainPlugin;
8import com.fs.starfarer.api.campaign.SectorEntityToken;
9
10public interface TerrainSpecAPI extends WithSourceMod {
11 String getId();
13 String getLoopOne();
14 String getLoopTwo();
15 String getLoopThree();
16 String getLoopFour();
17 JSONObject getCustom();
19
20 void addTag(String tag);
21 boolean hasTag(String tag);
22 Set<String> getTags();
24}
CampaignTerrainPlugin getNewPluginInstance(SectorEntityToken entity, Object param)