Starsector API
Loading...
Searching...
No Matches
ValueShifterAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api.util;
2
3public interface ValueShifterAPI {
4 float getBase();
5 void setBase(float base);
6 float getCurr();
7
16 void shift(Object source, float to, float durIn, float durOut, float shift);
17
18
19 void advance(float amount);
20}
void shift(Object source, float to, float durIn, float durOut, float shift)