Starsector API
Loading...
Searching...
No Matches
HyperspaceAbyssPlugin.java
Go to the documentation of this file.
1package com.fs.starfarer.api.impl.campaign.terrain;
2
3import java.util.List;
4
5import org.lwjgl.util.vector.Vector2f;
6
7import com.fs.starfarer.api.campaign.SectorEntityToken;
8import com.fs.starfarer.api.campaign.StarSystemAPI;
9
10public interface HyperspaceAbyssPlugin {
11 boolean isInAbyss(Vector2f loc);
13 float getAbyssalDepth(Vector2f loc);
15
16 float getAbyssalDepth(Vector2f loc, boolean uncapped);
17 float getAbyssalDepth(SectorEntityToken entity, boolean uncapped);
18
19
20 void advance(float amount);
21 List<StarSystemAPI> getAbyssalSystems();
22}
float getAbyssalDepth(SectorEntityToken entity, boolean uncapped)