aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/polyfrost/oneconfig/themes/textures/ThemeElement.java
blob: 2ab3bc9b2e2129900217e586f24a8ec918a35784 (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
48
package io.polyfrost.oneconfig.themes.textures;

public enum ThemeElement {
    DISCORD("textures/icons/discord.png", 128),
    DOCS("textures/icons/docs.png", 128),
    FEEDBACK("textures/icons/feedback.png", 128),
    GUIDE("textures/icons/guide.png", 128),
    HUD_SETTINGS("textures/icons/hudsettings.png", 128),
    MOD_SETTINGS("textures/icons/modsettings.png", 128),
    STORE("textures/icons/store.png", 128),
    THEMES("textures/icons/themes.png", 128),
    UPDATE("textures/icons/update.png", 128),

    BACK_ARROW("textures/smallicons/backarrow.png", 32),
    FORWARD_ARROW("textures/smallicons/forward.png", 32),
    HOME("textures/smallicons/home.png", 32),
    SEARCH("textures/smallicons/search.png", 32),
    MAGNIFY("textures/smallicons/magnify.png", 64),
    MINIMIZE("textures/smallicons/minimize.png", 64),
    CLOSE("textures/smallicons/close.png", 64),

    ALL_MODS("textures/mod/allmods.png", 32),
    HUD_MODS("textures/mod/hudmods.png", 32),
    QOL_MODS("textures/mod/qolmods.png", 32),
    HYPIXEL("textures/mod/hypixel.png", 32),
    PERFORMANCE("textures/mod/performance.png", 32),
    PVP("textures/mod/pvp.png", 32),
    SKYBLOCK("textures/mod/skyblock.png", 32),
    UTILITIES("textures/mod/utilities.png", 32),

    LOGO("textures/logos/logo.png", 128),
    SMALL_LOGO("textures/logos/logo_small.png", 64),

    BUTTON("textures/window/button.png", 758),
    BUTTON_HOVER("textures/window/button_hover.png", 758),
    BUTTON_CLICK("textures/window/button_click.png", 758),

    BACKGROUND("textures/window/background.png", 1600);


    public final String location;
    public final int size;

    ThemeElement(String location, int size) {
        this.location = location;
        this.size = size;
    }
}