aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/polyfrost/oneconfig/themes/textures/ThemeElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/io/polyfrost/oneconfig/themes/textures/ThemeElement.java')
-rw-r--r--src/main/java/io/polyfrost/oneconfig/themes/textures/ThemeElement.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/main/java/io/polyfrost/oneconfig/themes/textures/ThemeElement.java b/src/main/java/io/polyfrost/oneconfig/themes/textures/ThemeElement.java
deleted file mode 100644
index 2ab3bc9..0000000
--- a/src/main/java/io/polyfrost/oneconfig/themes/textures/ThemeElement.java
+++ /dev/null
@@ -1,48 +0,0 @@
-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;
- }
-}