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