blob: c42e581f15ab6fe2443472a06a416582cfb12dee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package cc.polyfrost.oneconfig.lwjgl.image;
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;
}
}
|