blob: af62b00d9154acf4422109ccc12df98d608b2459 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package cc.polyfrost.oneconfig.lwjgl.image;
/**
* An enum of images used in OneConfig.
*
* @see cc.polyfrost.oneconfig.lwjgl.RenderManager#drawImage(long, String, float, float, float, float, int)
* @see ImageLoader
*/
public enum Images {
HUE_GRADIENT("/assets/oneconfig/colorui/huegradient.png"),
COLOR_WHEEL("/assets/oneconfig/colorui/colorwheel.png"),
ALPHA_GRID("/assets/oneconfig/colorui/alphagrid.png");
public final String filePath;
Images(String filePath) {
this.filePath = filePath;
}
}
|