Starsector API
Loading...
Searching...
No Matches
ScrollPanelAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api.ui;
2
3public interface ScrollPanelAPI extends UIPanelAPI {
4
5 float getXOffset();
6 float getYOffset();
7 void setXOffset(float xOffset);
8 void setYOffset(float yOffset);
9
10}