aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/java/io/polyfrost/oneconfig/config/annotations/Option.java2
-rw-r--r--src/main/java/io/polyfrost/oneconfig/config/data/OptionType.java6
-rw-r--r--src/main/java/io/polyfrost/oneconfig/config/interfaces/Config.java13
-rw-r--r--src/main/java/io/polyfrost/oneconfig/gui/OneConfigGui.java6
-rw-r--r--src/main/java/io/polyfrost/oneconfig/gui/SideBar.java31
-rw-r--r--src/main/java/io/polyfrost/oneconfig/gui/elements/config/ConfigCheckbox.java20
-rw-r--r--src/main/java/io/polyfrost/oneconfig/gui/pages/ModConfigPage.java39
-rw-r--r--src/main/java/io/polyfrost/oneconfig/test/TestConfig.java3
-rw-r--r--src/main/resources/assets/oneconfig/font/OneConfig Designs (Copy)/Theme.pngbin0 -> 304 bytes
-rw-r--r--src/main/resources/assets/oneconfig/textures/Dashboard.pngbin0 -> 405 bytes
-rw-r--r--src/main/resources/assets/oneconfig/textures/HUD.pngbin0 -> 379 bytes
-rw-r--r--src/main/resources/assets/oneconfig/textures/HUDSettings.pngbin0 -> 399 bytes
-rw-r--r--src/main/resources/assets/oneconfig/textures/Image.pngbin0 -> 369 bytes
-rw-r--r--src/main/resources/assets/oneconfig/textures/Minimise.pngbin0 -> 302 bytes
-rw-r--r--src/main/resources/assets/oneconfig/textures/Mods.pngbin0 -> 285 bytes
-rw-r--r--src/main/resources/assets/oneconfig/textures/Performance.pngbin0 -> 381 bytes
-rw-r--r--src/main/resources/assets/oneconfig/textures/Profiles.pngbin0 -> 437 bytes
-rw-r--r--src/main/resources/assets/oneconfig/textures/Settings.pngbin0 -> 425 bytes
-rw-r--r--src/main/resources/assets/oneconfig/textures/Theme.pngbin0 -> 304 bytes
-rw-r--r--src/main/resources/assets/oneconfig/textures/Update.pngbin0 -> 343 bytes
-rw-r--r--src/main/resources/assets/oneconfig/textures/XCircle.pngbin0 -> 383 bytes
21 files changed, 88 insertions, 32 deletions
diff --git a/src/main/java/io/polyfrost/oneconfig/config/annotations/Option.java b/src/main/java/io/polyfrost/oneconfig/config/annotations/Option.java
index fe61a02..7a0b6c1 100644
--- a/src/main/java/io/polyfrost/oneconfig/config/annotations/Option.java
+++ b/src/main/java/io/polyfrost/oneconfig/config/annotations/Option.java
@@ -24,7 +24,7 @@ public @interface Option {
/**
* The category of the component
*/
- String category() default "general";
+ String category() default "General";
/**
* The subcategory of the component (displayed as header)
diff --git a/src/main/java/io/polyfrost/oneconfig/config/data/OptionType.java b/src/main/java/io/polyfrost/oneconfig/config/data/OptionType.java
index 7e106f4..8376786 100644
--- a/src/main/java/io/polyfrost/oneconfig/config/data/OptionType.java
+++ b/src/main/java/io/polyfrost/oneconfig/config/data/OptionType.java
@@ -9,7 +9,13 @@ public enum OptionType {
* Type: boolean
*/
CHECKBOX,
+ /**
+ * Type: boolean
+ */
DUAL_OPTION,
+ /**
+ * Type: int
+ */
UNI_SELECTOR,
/**
* Type: String
diff --git a/src/main/java/io/polyfrost/oneconfig/config/interfaces/Config.java b/src/main/java/io/polyfrost/oneconfig/config/interfaces/Config.java
index af3d037..211c2ce 100644
--- a/src/main/java/io/polyfrost/oneconfig/config/interfaces/Config.java
+++ b/src/main/java/io/polyfrost/oneconfig/config/interfaces/Config.java
@@ -8,7 +8,10 @@ import io.polyfrost.oneconfig.config.data.Mod;
import io.polyfrost.oneconfig.config.data.OptionCategory;
import io.polyfrost.oneconfig.config.data.OptionPage;
import io.polyfrost.oneconfig.config.profiles.Profiles;
+import io.polyfrost.oneconfig.gui.OneConfigGui;
import io.polyfrost.oneconfig.gui.elements.config.*;
+import io.polyfrost.oneconfig.gui.pages.ModConfigPage;
+import net.minecraft.client.Minecraft;
import java.io.*;
import java.lang.reflect.Field;
@@ -20,6 +23,7 @@ import java.util.*;
public class Config {
protected final String configFile;
protected final Gson gson = new GsonBuilder().excludeFieldsWithModifiers(Modifier.TRANSIENT).setPrettyPrinting().registerTypeAdapterFactory(OneConfigTypeAdapterFactory.getStaticTypeAdapterFactory()).create();
+ private static Mod mod;
/**
* @param modData information about the mod
@@ -36,6 +40,7 @@ public class Config {
mod.config = this;
generateOptionList(this.getClass(), mod.defaultPage, mod);
ConfigCore.oneConfigMods.add(mod);
+ this.mod = mod;
}
/**
@@ -155,4 +160,12 @@ public class Config {
}
}
}
+
+ /**
+ * Function to open the gui of this mod
+ */
+ public void openGui() {
+ if (mod == null) return;
+ Minecraft.getMinecraft().displayGuiScreen(new OneConfigGui(new ModConfigPage(mod.defaultPage)));
+ }
}
diff --git a/src/main/java/io/polyfrost/oneconfig/gui/OneConfigGui.java b/src/main/java/io/polyfrost/oneconfig/gui/OneConfigGui.java
index 0a4acd6..1f7da18 100644
--- a/src/main/java/io/polyfrost/oneconfig/gui/OneConfigGui.java
+++ b/src/main/java/io/polyfrost/oneconfig/gui/OneConfigGui.java
@@ -1,7 +1,6 @@
package io.polyfrost.oneconfig.gui;
import io.polyfrost.oneconfig.config.OneConfigConfig;
-import io.polyfrost.oneconfig.gui.elements.BasicElement;
import io.polyfrost.oneconfig.gui.elements.TextInputField;
import io.polyfrost.oneconfig.gui.pages.HomePage;
import io.polyfrost.oneconfig.gui.pages.Page;
@@ -36,6 +35,11 @@ public class OneConfigGui extends GuiScreen {
INSTANCE = this;
}
+ public OneConfigGui(Page page) {
+ INSTANCE = this;
+ currentPage = page;
+ }
+
@Override
public void drawScreen(int mouseX, int mouseY, float partialTicks) {
super.drawScreen(mouseX, mouseY, partialTicks);
diff --git a/src/main/java/io/polyfrost/oneconfig/gui/SideBar.java b/src/main/java/io/polyfrost/oneconfig/gui/SideBar.java
index 60f2a93..dc136a7 100644
--- a/src/main/java/io/polyfrost/oneconfig/gui/SideBar.java
+++ b/src/main/java/io/polyfrost/oneconfig/gui/SideBar.java
@@ -3,7 +3,9 @@ package io.polyfrost.oneconfig.gui;
import io.polyfrost.oneconfig.config.OneConfigConfig;
import io.polyfrost.oneconfig.gui.elements.BasicButton;
import io.polyfrost.oneconfig.gui.pages.HomePage;
+import io.polyfrost.oneconfig.gui.pages.ModConfigPage;
import io.polyfrost.oneconfig.gui.pages.ModsPage;
+import io.polyfrost.oneconfig.gui.pages.Page;
import io.polyfrost.oneconfig.lwjgl.RenderManager;
import io.polyfrost.oneconfig.lwjgl.font.Fonts;
import io.polyfrost.oneconfig.utils.MathUtils;
@@ -18,18 +20,19 @@ public class SideBar {
private float targetY = 0, currentY = 0;
public SideBar() {
- btnList.add(new BasicButton(192, 36, "Dashboard", "/assets/oneconfig/textures/share.png", null, -3, BasicButton.ALIGNMENT_LEFT, new HomePage()));
- btnList.add(new BasicButton(192, 36, "Global Search", "/assets/oneconfig/textures/share.png", null, -3, BasicButton.ALIGNMENT_LEFT));
- btnList.add(new BasicButton(192, 36, "Mods", "/assets/oneconfig/textures/share.png", null, -3, BasicButton.ALIGNMENT_LEFT, new ModsPage()));
- btnList.add(new BasicButton(192, 36, "Performance", "/assets/oneconfig/textures/share.png", null, -3, BasicButton.ALIGNMENT_LEFT));
- btnList.add(new BasicButton(192, 36, "Profiles", "/assets/oneconfig/textures/share.png", null, -3, BasicButton.ALIGNMENT_LEFT));
- btnList.add(new BasicButton(192, 36, "Updates", "/assets/oneconfig/textures/share.png", null, -3, BasicButton.ALIGNMENT_LEFT));
- btnList.add(new BasicButton(192, 36, "Screenshots", "/assets/oneconfig/textures/share.png", null, -3, BasicButton.ALIGNMENT_LEFT));
- btnList.add(new BasicButton(192, 36, "HUD Settings", "/assets/oneconfig/textures/share.png", null, -3, BasicButton.ALIGNMENT_LEFT));
- btnList.add(new BasicButton(192, 36, "General", "/assets/oneconfig/textures/share.png", null, -3, BasicButton.ALIGNMENT_LEFT));
- btnList.add(new BasicButton(192, 36, "Close", "/assets/oneconfig/textures/share.png", null, -1, BasicButton.ALIGNMENT_LEFT, () -> Minecraft.getMinecraft().displayGuiScreen(null)));
- btnList.add(new BasicButton(192, 36, "Minimize", "/assets/oneconfig/textures/share.png", null, -1, BasicButton.ALIGNMENT_LEFT));
- btnList.add(new BasicButton(192, 36, "Edit HUD", "/assets/oneconfig/textures/share.png", null, 0, BasicButton.ALIGNMENT_LEFT, () -> Minecraft.getMinecraft().displayGuiScreen(new HudGui())));
+ btnList.add(new BasicButton(192, 36, "Dashboard", "/assets/oneconfig/textures/Dashboard.png", null, -3, BasicButton.ALIGNMENT_LEFT, new HomePage()));
+ btnList.add(new BasicButton(192, 36, "Global Search", "/assets/oneconfig/textures/search.png", null, -3, BasicButton.ALIGNMENT_LEFT));
+ btnList.add(new BasicButton(192, 36, "Mods", "/assets/oneconfig/textures/Mods.png", null, -3, BasicButton.ALIGNMENT_LEFT, new ModsPage()));
+ btnList.add(new BasicButton(192, 36, "Performance", "/assets/oneconfig/textures/Performance.png", null, -3, BasicButton.ALIGNMENT_LEFT));
+ btnList.add(new BasicButton(192, 36, "Profiles", "/assets/oneconfig/textures/Profiles.png", null, -3, BasicButton.ALIGNMENT_LEFT));
+ btnList.add(new BasicButton(192, 36, "Updates", "/assets/oneconfig/textures/Update.png", null, -3, BasicButton.ALIGNMENT_LEFT));
+ btnList.add(new BasicButton(192, 36, "Theme", "/assets/oneconfig/textures/Theme.png", null, -3, BasicButton.ALIGNMENT_LEFT));
+ btnList.add(new BasicButton(192, 36, "Screenshots", "/assets/oneconfig/textures/Image.png", null, -3, BasicButton.ALIGNMENT_LEFT));
+ btnList.add(new BasicButton(192, 36, "HUD Settings", "/assets/oneconfig/textures/HUDSettings.png", null, -3, BasicButton.ALIGNMENT_LEFT));
+ btnList.add(new BasicButton(192, 36, "Preferences", "/assets/oneconfig/textures/Settings.png", null, -3, BasicButton.ALIGNMENT_LEFT));
+ btnList.add(new BasicButton(192, 36, "Close", "/assets/oneconfig/textures/XCircle.png", null, -1, BasicButton.ALIGNMENT_LEFT, () -> Minecraft.getMinecraft().displayGuiScreen(null)));
+ btnList.add(new BasicButton(192, 36, "Minimize", "/assets/oneconfig/textures/Minimise.png", null, -1, BasicButton.ALIGNMENT_LEFT));
+ btnList.add(new BasicButton(192, 36, "Edit HUD", "/assets/oneconfig/textures/HUD.png", null, 0, BasicButton.ALIGNMENT_LEFT, () -> Minecraft.getMinecraft().displayGuiScreen(new HudGui())));
}
public void draw(long vg, int x, int y) {
@@ -53,8 +56,8 @@ public class SideBar {
RenderManager.drawString(vg, "PERSONALIZATION", x + 16, y + 420, OneConfigConfig.WHITE_90, 12f, Fonts.INTER_SEMIBOLD);
i = 342;
}
- if (i == 474) {
- i = 518;
+ if (i == 518) {
+ i = 562;
}
if (btn.isClicked() && btn.getPage() != null) {
diff --git a/src/main/java/io/polyfrost/oneconfig/gui/elements/config/ConfigCheckbox.java b/src/main/java/io/polyfrost/oneconfig/gui/elements/config/ConfigCheckbox.java
index 6832236..93f4378 100644
--- a/src/main/java/io/polyfrost/oneconfig/gui/elements/config/ConfigCheckbox.java
+++ b/src/main/java/io/polyfrost/oneconfig/gui/elements/config/ConfigCheckbox.java
@@ -26,10 +26,10 @@ public class ConfigCheckbox extends BasicOption {
toggled = (boolean) get();
} catch (IllegalAccessException ignored) {
}
- boolean hover = InputUtils.isAreaHovered(x, y, 24, 24);
+ boolean hover = InputUtils.isAreaHovered(x, y + 4, 24, 24);
boolean clicked = InputUtils.isClicked() && hover;
- if(clicked) {
+ if (clicked) {
toggled = !toggled;
try {
set(toggled);
@@ -38,18 +38,18 @@ public class ConfigCheckbox extends BasicOption {
e.printStackTrace();
}
}
- if(percentOn != 1f) { // performance
- RenderManager.drawRoundedRect(vg, x, y, 24, 24, color, 6f);
- RenderManager.drawHollowRoundRect(vg, x, y, 23.5f, 23.5f, OneConfigConfig.GRAY_300, 6f, 1f); // the 0.5f is to make it look better ok
+ if (percentOn != 1f) { // performance
+ RenderManager.drawRoundedRect(vg, x, y + 4, 24, 24, color, 6f);
+ RenderManager.drawHollowRoundRect(vg, x, y + 4, 23.5f, 23.5f, OneConfigConfig.GRAY_300, 6f, 1f); // the 0.5f is to make it look better ok
}
color = ColorUtils.smoothColor(color, OneConfigConfig.GRAY_600, OneConfigConfig.GRAY_400, hover, 40f);
- RenderManager.drawString(vg, name, x + 32, y + 14, OneConfigConfig.WHITE_90, 18f, Fonts.INTER_MEDIUM);
+ RenderManager.drawString(vg, name, x + 32, y + 17, OneConfigConfig.WHITE_90, 18f, Fonts.INTER_MEDIUM);
percentOn = MathUtils.clamp(MathUtils.easeOut(percentOn, toggled ? 1f : 0f, 5f));
- if(percentOn == 0f) return;
- if(percentOn != 1f) {
- RenderManager.drawImage(vg, "/assets/oneconfig/textures/check.png", x, y, 24, 24, new Color(1f, 1f, 1f, percentOn).getRGB());
+ if (percentOn == 0f) return;
+ if (percentOn != 1f) {
+ RenderManager.drawImage(vg, "/assets/oneconfig/textures/check.png", x, y + 4, 24, 24, new Color(1f, 1f, 1f, percentOn).getRGB());
} else { // performance, that color could cause havoc am I right definitely
- RenderManager.drawImage(vg, "/assets/oneconfig/textures/check.png", x, y, 24, 24);
+ RenderManager.drawImage(vg, "/assets/oneconfig/textures/check.png", x, y + 4, 24, 24);
}
}
diff --git a/src/main/java/io/polyfrost/oneconfig/gui/pages/ModConfigPage.java b/src/main/java/io/polyfrost/oneconfig/gui/pages/ModConfigPage.java
index f3224b5..6bdf9d9 100644
--- a/src/main/java/io/polyfrost/oneconfig/gui/pages/ModConfigPage.java
+++ b/src/main/java/io/polyfrost/oneconfig/gui/pages/ModConfigPage.java
@@ -3,25 +3,46 @@ package io.polyfrost.oneconfig.gui.pages;
import io.polyfrost.oneconfig.config.OneConfigConfig;
import io.polyfrost.oneconfig.config.data.OptionPage;
import io.polyfrost.oneconfig.config.interfaces.BasicOption;
+import io.polyfrost.oneconfig.gui.elements.BasicButton;
import io.polyfrost.oneconfig.gui.elements.config.ConfigPageButton;
import io.polyfrost.oneconfig.lwjgl.RenderManager;
import io.polyfrost.oneconfig.lwjgl.font.Fonts;
+import java.util.ArrayList;
+
public class ModConfigPage extends Page {
private final OptionPage page;
+ private final ArrayList<BasicButton> categories = new ArrayList<>();
+ private String selectedCategory;
public ModConfigPage(OptionPage page) {
super("Mod: " + page.mod.name);
this.page = page;
+ if (page.categories.size() == 0) return;
+ selectedCategory = page.categories.keySet().stream().findFirst().get();
+ if (page.categories.size() < 2) return;
+ for (String category : page.categories.keySet()) {
+ BasicButton button = new BasicButton(0, 32, category, null, null, 0, BasicButton.ALIGNMENT_CENTER, true, () -> switchCategory(category));
+ if (category.equals(selectedCategory)) button.setToggled(true);
+ categories.add(button);
+ }
}
@Override
public void draw(long vg, int x, int y) {
if (page.categories.size() == 0) return;
- String selectedCategory = page.categories.keySet().stream().findFirst().get();
int optionX = x + 30;
int optionY = y + (page.categories.size() == 1 ? 16 : 64);
+ // Category buttons
+ int buttonX = x + 16;
+ for (BasicButton button : categories) {
+ if (button.getWidth() == 0)
+ button.setWidth((int) (Math.ceil(RenderManager.getTextWidth(vg, button.getText(), 14f, Fonts.INTER_MEDIUM) / 8f) * 8 + 16));
+ button.draw(vg, buttonX, y + 16);
+ buttonX += button.getWidth() + 16;
+ }
+
// Top page buttons
for (ConfigPageButton page : page.categories.get(selectedCategory).topPages) {
page.draw(vg, optionX, optionY);
@@ -29,9 +50,9 @@ public class ModConfigPage extends Page {
}
// Background
- int backgroundSize = 48;
+ int backgroundSize = 16;
for (String subCategory : page.categories.get(selectedCategory).subcategories.keySet()) {
- backgroundSize += 32;
+ backgroundSize += 48;
for (int i = 0; i < page.categories.get(selectedCategory).subcategories.get(subCategory).size(); i++) {
BasicOption option = page.categories.get(selectedCategory).subcategories.get(subCategory).get(i);
if (i + 1 < page.categories.get(selectedCategory).subcategories.get(subCategory).size()) {
@@ -49,7 +70,7 @@ public class ModConfigPage extends Page {
// draw options
optionY += 16;
- int optionLastY = optionX;
+ int optionLastY = optionY;
for (String subCategory : page.categories.get(selectedCategory).subcategories.keySet()) {
RenderManager.drawString(vg, subCategory, optionX, optionY + 16, OneConfigConfig.WHITE_90, 24f, Fonts.INTER_MEDIUM);
optionY += 48;
@@ -104,11 +125,19 @@ public class ModConfigPage extends Page {
@Override
public void keyTyped(char key, int keyCode) {
if (page.categories.size() == 0) return;
- String selectedCategory = page.categories.keySet().stream().findFirst().get();
for (String subCategory : page.categories.get(selectedCategory).subcategories.keySet()) {
for (int i = 0; i < page.categories.get(selectedCategory).subcategories.get(subCategory).size(); i++) {
page.categories.get(selectedCategory).subcategories.get(subCategory).get(i).keyTyped(key, keyCode);
}
}
}
+
+ public void switchCategory(String newCategory) {
+ if (!page.categories.containsKey(newCategory)) return;
+ selectedCategory = newCategory;
+ for (BasicButton button : categories) {
+ if (button.getText().equals(newCategory)) continue;
+ button.setToggled(false);
+ }
+ }
}
diff --git a/src/main/java/io/polyfrost/oneconfig/test/TestConfig.java b/src/main/java/io/polyfrost/oneconfig/test/TestConfig.java
index 7b99cc1..bd1fb58 100644
--- a/src/main/java/io/polyfrost/oneconfig/test/TestConfig.java
+++ b/src/main/java/io/polyfrost/oneconfig/test/TestConfig.java
@@ -73,7 +73,8 @@ public class TestConfig extends Config {
@Option(
name = "Test check",
subcategory = "Other subcategory",
- type = OptionType.CHECKBOX
+ type = OptionType.CHECKBOX,
+ category = "Test category"
)
public static boolean switchTest6;
diff --git a/src/main/resources/assets/oneconfig/font/OneConfig Designs (Copy)/Theme.png b/src/main/resources/assets/oneconfig/font/OneConfig Designs (Copy)/Theme.png
new file mode 100644
index 0000000..df8e3de
--- /dev/null
+++ b/src/main/resources/assets/oneconfig/font/OneConfig Designs (Copy)/Theme.png
Binary files differ
diff --git a/src/main/resources/assets/oneconfig/textures/Dashboard.png b/src/main/resources/assets/oneconfig/textures/Dashboard.png
new file mode 100644
index 0000000..179a57d
--- /dev/null
+++ b/src/main/resources/assets/oneconfig/textures/Dashboard.png
Binary files differ
diff --git a/src/main/resources/assets/oneconfig/textures/HUD.png b/src/main/resources/assets/oneconfig/textures/HUD.png
new file mode 100644
index 0000000..98c052c
--- /dev/null
+++ b/src/main/resources/assets/oneconfig/textures/HUD.png
Binary files differ
diff --git a/src/main/resources/assets/oneconfig/textures/HUDSettings.png b/src/main/resources/assets/oneconfig/textures/HUDSettings.png
new file mode 100644
index 0000000..9dd5b5d
--- /dev/null
+++ b/src/main/resources/assets/oneconfig/textures/HUDSettings.png
Binary files differ
diff --git a/src/main/resources/assets/oneconfig/textures/Image.png b/src/main/resources/assets/oneconfig/textures/Image.png
new file mode 100644
index 0000000..f9a4d25
--- /dev/null
+++ b/src/main/resources/assets/oneconfig/textures/Image.png
Binary files differ
diff --git a/src/main/resources/assets/oneconfig/textures/Minimise.png b/src/main/resources/assets/oneconfig/textures/Minimise.png
new file mode 100644
index 0000000..dbe5a56
--- /dev/null
+++ b/src/main/resources/assets/oneconfig/textures/Minimise.png
Binary files differ
diff --git a/src/main/resources/assets/oneconfig/textures/Mods.png b/src/main/resources/assets/oneconfig/textures/Mods.png
new file mode 100644
index 0000000..07ebd26
--- /dev/null
+++ b/src/main/resources/assets/oneconfig/textures/Mods.png
Binary files differ
diff --git a/src/main/resources/assets/oneconfig/textures/Performance.png b/src/main/resources/assets/oneconfig/textures/Performance.png
new file mode 100644
index 0000000..fe64b1d
--- /dev/null
+++ b/src/main/resources/assets/oneconfig/textures/Performance.png
Binary files differ
diff --git a/src/main/resources/assets/oneconfig/textures/Profiles.png b/src/main/resources/assets/oneconfig/textures/Profiles.png
new file mode 100644
index 0000000..f0574e6
--- /dev/null
+++ b/src/main/resources/assets/oneconfig/textures/Profiles.png
Binary files differ
diff --git a/src/main/resources/assets/oneconfig/textures/Settings.png b/src/main/resources/assets/oneconfig/textures/Settings.png
new file mode 100644
index 0000000..c8c9888
--- /dev/null
+++ b/src/main/resources/assets/oneconfig/textures/Settings.png
Binary files differ
diff --git a/src/main/resources/assets/oneconfig/textures/Theme.png b/src/main/resources/assets/oneconfig/textures/Theme.png
new file mode 100644
index 0000000..df8e3de
--- /dev/null
+++ b/src/main/resources/assets/oneconfig/textures/Theme.png
Binary files differ
diff --git a/src/main/resources/assets/oneconfig/textures/Update.png b/src/main/resources/assets/oneconfig/textures/Update.png
new file mode 100644
index 0000000..d44220b
--- /dev/null
+++ b/src/main/resources/assets/oneconfig/textures/Update.png
Binary files differ
diff --git a/src/main/resources/assets/oneconfig/textures/XCircle.png b/src/main/resources/assets/oneconfig/textures/XCircle.png
new file mode 100644
index 0000000..85c82f2
--- /dev/null
+++ b/src/main/resources/assets/oneconfig/textures/XCircle.png
Binary files differ