Starsector API
Loading...
Searching...
No Matches
BattleObjectiveAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api.combat;
2
3import org.lwjgl.util.vector.Vector2f;
4
5import com.fs.starfarer.api.graphics.SpriteAPI;
6
13 public static enum Importance {
14 //MINOR,
15 //IMPORTANT,
16 //CRITICAL,
17 NORMAL,
18 }
19
20
21 public Vector2f getLocation();
22 public int getOwner();
23 public String getType();
24 public Importance getImportance();
25 public String getDisplayName();
26
27 SpriteAPI getSprite();
28 void setSprite(SpriteAPI sprite);
30}