diff options
author | nextdaydelivery <12willettsh@gmail.com> | 2022-02-20 12:13:58 +0000 |
---|---|---|
committer | nextdaydelivery <12willettsh@gmail.com> | 2022-02-20 12:14:29 +0000 |
commit | dfa65f6236c226eb88f4e3761e10e80e5f37c22b (patch) | |
tree | 33937f0cadf5fb012aae57e6db87e56a32b4e265 /src/main/java/io/polyfrost/oneconfig/themes/ThemeElement.java | |
parent | 4f8e90571e3a270b54244d0fef985d5e0ca04b40 (diff) | |
download | OneConfig-dfa65f6236c226eb88f4e3761e10e80e5f37c22b.tar.gz OneConfig-dfa65f6236c226eb88f4e3761e10e80e5f37c22b.tar.bz2 OneConfig-dfa65f6236c226eb88f4e3761e10e80e5f37c22b.zip |
package moves and a split string renderer
Diffstat (limited to 'src/main/java/io/polyfrost/oneconfig/themes/ThemeElement.java')
-rw-r--r-- | src/main/java/io/polyfrost/oneconfig/themes/ThemeElement.java | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/src/main/java/io/polyfrost/oneconfig/themes/ThemeElement.java b/src/main/java/io/polyfrost/oneconfig/themes/ThemeElement.java deleted file mode 100644 index 9e8e061..0000000 --- a/src/main/java/io/polyfrost/oneconfig/themes/ThemeElement.java +++ /dev/null @@ -1,48 +0,0 @@ -package io.polyfrost.oneconfig.themes; - -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_OFF("textures/window/button_off.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; - } -} |