Starsector API
Loading...
Searching...
No Matches
CustomUIPanelPlugin.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
8public interface CustomUIPanelPlugin {
9
15
20 void renderBelow(float alphaMult);
25 void render(float alphaMult);
26
30 void advance(float amount);
31
42 void processInput(List<InputEventAPI> events);
43
44 void buttonPressed(Object buttonId);
45}
void processInput(List< InputEventAPI > events)