Starsector API
Loading...
Searching...
No Matches
BaseCustomUIPanelPlugin.java
Go to the documentation of this file.
1package com.fs.starfarer.api.campaign;
2
3import java.util.List;
4
5import com.fs.starfarer.api.input.InputEventAPI;
6import com.fs.starfarer.api.ui.PositionAPI;
7
9
10 public void positionChanged(PositionAPI position) {
11
12 }
13
14 public void renderBelow(float alphaMult) {
15
16 }
17
18 public void render(float alphaMult) {
19
20 }
21
22 public void advance(float amount) {
23
24 }
25
26 public void processInput(List<InputEventAPI> events) {
27
28 }
29
30 public void buttonPressed(Object buttonId) {
31
32 }
33
34}