blob: b7dc9cc158bbeffb76fc709653d312c20fcbfae4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package cc.polyfrost.oneconfig.internal.assets;
import cc.polyfrost.oneconfig.renderer.AssetLoader;
/**
* An enum of images used in OneConfig.
*
* @see cc.polyfrost.oneconfig.renderer.RenderManager#drawImage(long, String, float, float, float, float, int)
* @see AssetLoader
*/
public enum Images {
HUE_GRADIENT("/assets/oneconfig/options/HueGradient.png"),
COLOR_WHEEL("/assets/oneconfig/options/ColorWheel.png"),
ALPHA_GRID("/assets/oneconfig/options/AlphaGrid.png");
public final String filePath;
Images(String filePath) {
this.filePath = filePath;
}
}
|