Starsector API
Loading...
Searching...
No Matches
UIComponentAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api.ui;
2
3import java.util.List;
4
5import com.fs.starfarer.api.input.InputEventAPI;
6
7public interface UIComponentAPI {
9
10 void render(float alphaMult);
11 void processInput(List<InputEventAPI> events);
12 void advance(float amount);
13}
void processInput(List< InputEventAPI > events)