Starsector API
Loading...
Searching...
No Matches
ModManagerAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api;
2
3import java.util.List;
4
5public interface ModManagerAPI {
6 List<ModSpecAPI> getAvailableModsCopy();
7 List<ModSpecAPI> getEnabledModsCopy();
8 boolean isModEnabled(String id);
9 List<ModPlugin> getEnabledModPlugins();
12}
List< ModPlugin > getEnabledModPlugins()
List< ModSpecAPI > getEnabledModsCopy()
List< ModSpecAPI > getAvailableModsCopy()
ModSpecAPI getModSpec(String id)