Starsector API
Loading...
Searching...
No Matches
DroneLauncherShipSystemAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api.combat;
2
3import org.json.JSONObject;
4import org.lwjgl.util.vector.Vector2f;
5
6public interface DroneLauncherShipSystemAPI {
7
8 public static enum DroneOrders {
9 RECALL,
10 DEPLOY,
11 ATTACK,
12 }
13
17 JSONObject getSpecJson();
18
24 Vector2f getLandingLocation(ShipAPI drone);
25
26
27 DroneLauncherShipSystemAPI.DroneOrders getDroneOrders();
28
29 int getIndex(ShipAPI drone);
30}
DroneLauncherShipSystemAPI.DroneOrders getDroneOrders()