Starsector API
Loading...
Searching...
No Matches
ColorShifterAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api.util;
2
3import java.awt.Color;
4
5public interface ColorShifterAPI {
6
7 Color getBase();
8 void setBase(Color base);
9 Color getCurr();
10 void shift(Object source, Color to, float durIn, float durOut, float shift);
11 Color getCurrForBase(Color diffBase);
12}
void shift(Object source, Color to, float durIn, float durOut, float shift)