aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/polyfrost/oneconfig/lwjgl/image/Images.java
blob: 58492bc45f913b6f561f8ccab6b5c2f18f1382ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package io.polyfrost.oneconfig.lwjgl.image;

public enum Images {
    CHEVRON_ARROW("/assets/oneconfig/textures/gui/general/arrows/chevron.png"),
    DROPDOWN_ARROW("/assets/oneconfig/textures/gui/general/arrows/dropdown_arrow.png"),
    UP_ARROW("/assets/oneconfig/textures/gui/general/arrows/up_arrow.png"),
    CIRCLE_ARROW("/assets/oneconfig/textures/gui/general/arrows/circle_arrow.png"),

    CHECKMARK("/assets/oneconfig/textures/gui/general/configs/checkmark.png"),
    FAVORITE("/assets/oneconfig/textures/gui/general/configs/favorite_active.png"),
    FAVORITE_OFF("/assets/oneconfig/textures/gui/general/configs/favorite_inactive.png"),
    HIDE_EYE("/assets/oneconfig/textures/gui/general/configs/hide_eye.png"),
    HIDE_EYE_OFF("/assets/oneconfig/textures/gui/general/configs/hide_eye_off.png"),

    // TODO color picker ones
    COLOR_BASE("/assets/oneconfig/textures/gui/general/color/color_base.png"),


    SHARE("/assets/oneconfig/textures/gui/general/nav/share.png"),
    LAUNCH("/assets/oneconfig/textures/gui/general/nav/launch.png"),
    SEARCH("/assets/oneconfig/textures/gui/general/nav/search.png"),
    MINIMIZE("/assets/oneconfig/textures/gui/general/nav/minimize.png"),
    CLOSE("/assets/oneconfig/textures/gui/general/nav/close.png"),

    LOGO("/assets/oneconfig/textures/gui/general/logo.png"),

    HUD("/assets/oneconfig/textures/gui/icons/hud/hud.png"),
    HUD_SETTINGS("/assets/oneconfig/textures/gui/icons/hud/settings.png"),

    MOD_BOX("/assets/oneconfig/textures/gui/icons/mod/mod_box.png"),
    MODS("/assets/oneconfig/textures/gui/icons/mod/mods.png"),
    PERFORMANCE("/assets/oneconfig/textures/gui/icons/mod/performance.png"),

    DASHBOARD("/assets/oneconfig/textures/gui/icons/dashboard.png"),
    PREFERENCES("/assets/oneconfig/textures/gui/icons/preferences.png"),
    PROFILES("/assets/oneconfig/textures/gui/icons/profiles.png"),
    SCREENSHOT("/assets/oneconfig/textures/gui/icons/screenshot.png"),
    THEMES("/assets/oneconfig/textures/gui/icons/themes.png"),
    UPDATES("/assets/oneconfig/textures/gui/icons/updates.png"),
    ;

    public final String filePath;

    Images(String filePath) {
        this.filePath = filePath;
    }
}