diff --git a/src/main/java/xyz/sillyjune/notebook/Notebook.java b/src/main/java/xyz/sillyjune/notebook/Notebook.java index 238ab47..c24cc65 100644 --- a/src/main/java/xyz/sillyjune/notebook/Notebook.java +++ b/src/main/java/xyz/sillyjune/notebook/Notebook.java @@ -69,24 +69,24 @@ public void onInitialize() { } public static final ButtonTextures MAIN_BUTTON_ICON = new ButtonTextures( - new Identifier("notebook:textures/gui/book/unfocused.png"), - new Identifier("notebook:textures/gui/book/focused.png") + new Identifier("notebook:book/unfocused"), + new Identifier("notebook:book/focused") ); public static final ButtonTextures NEW_PAGE_ICON = new ButtonTextures( - new Identifier("notebook:textures/gui/new_page/unfocused.png"), - new Identifier("notebook:textures/gui/new_page/focused.png") + new Identifier("notebook:new_page/unfocused"), + new Identifier("notebook:new_page/focused") ); public static final ButtonTextures DEL_PAGE_ICON = new ButtonTextures( - new Identifier("notebook:textures/gui/delete_page/unfocused.png"), - new Identifier("notebook:textures/gui/delete_page/focused.png") + new Identifier("notebook:delete_page/unfocused"), + new Identifier("notebook:delete_page/focused") ); public static final ButtonTextures LAST_BOOK_ICON = new ButtonTextures( - new Identifier("notebook:textures/gui/last_book/unfocused.png"), - new Identifier("notebook:textures/gui/last_book/focused.png") + new Identifier("notebook:last_book/unfocused"), + new Identifier("notebook:last_book/focused") ); public static final ButtonTextures NEXT_BOOK_ICON = new ButtonTextures( - new Identifier("notebook:textures/gui/next_book/unfocused.png"), - new Identifier("notebook:textures/gui/next_book/focused.png") + new Identifier("notebook:next_book/unfocused"), + new Identifier("notebook:next_book/focused") ); public static String BOOK_FOLDER = "Notebook"; public static boolean DEV_ONLY = false; diff --git a/src/main/resources/assets/notebook/textures/gui/book/focused.png b/src/main/resources/assets/notebook/textures/gui/sprites/book/focused.png similarity index 100% rename from src/main/resources/assets/notebook/textures/gui/book/focused.png rename to src/main/resources/assets/notebook/textures/gui/sprites/book/focused.png diff --git a/src/main/resources/assets/notebook/textures/gui/book/unfocused.png b/src/main/resources/assets/notebook/textures/gui/sprites/book/unfocused.png similarity index 100% rename from src/main/resources/assets/notebook/textures/gui/book/unfocused.png rename to src/main/resources/assets/notebook/textures/gui/sprites/book/unfocused.png diff --git a/src/main/resources/assets/notebook/textures/gui/delete_page/focused.png b/src/main/resources/assets/notebook/textures/gui/sprites/delete_page/focused.png similarity index 100% rename from src/main/resources/assets/notebook/textures/gui/delete_page/focused.png rename to src/main/resources/assets/notebook/textures/gui/sprites/delete_page/focused.png diff --git a/src/main/resources/assets/notebook/textures/gui/delete_page/unfocused.png b/src/main/resources/assets/notebook/textures/gui/sprites/delete_page/unfocused.png similarity index 100% rename from src/main/resources/assets/notebook/textures/gui/delete_page/unfocused.png rename to src/main/resources/assets/notebook/textures/gui/sprites/delete_page/unfocused.png diff --git a/src/main/resources/assets/notebook/textures/gui/last_book/focused.png b/src/main/resources/assets/notebook/textures/gui/sprites/last_book/focused.png similarity index 100% rename from src/main/resources/assets/notebook/textures/gui/last_book/focused.png rename to src/main/resources/assets/notebook/textures/gui/sprites/last_book/focused.png diff --git a/src/main/resources/assets/notebook/textures/gui/last_book/unfocused.png b/src/main/resources/assets/notebook/textures/gui/sprites/last_book/unfocused.png similarity index 100% rename from src/main/resources/assets/notebook/textures/gui/last_book/unfocused.png rename to src/main/resources/assets/notebook/textures/gui/sprites/last_book/unfocused.png diff --git a/src/main/resources/assets/notebook/textures/gui/new_page/focused.png b/src/main/resources/assets/notebook/textures/gui/sprites/new_page/focused.png similarity index 100% rename from src/main/resources/assets/notebook/textures/gui/new_page/focused.png rename to src/main/resources/assets/notebook/textures/gui/sprites/new_page/focused.png diff --git a/src/main/resources/assets/notebook/textures/gui/new_page/unfocused.png b/src/main/resources/assets/notebook/textures/gui/sprites/new_page/unfocused.png similarity index 100% rename from src/main/resources/assets/notebook/textures/gui/new_page/unfocused.png rename to src/main/resources/assets/notebook/textures/gui/sprites/new_page/unfocused.png diff --git a/src/main/resources/assets/notebook/textures/gui/next_book/focused.png b/src/main/resources/assets/notebook/textures/gui/sprites/next_book/focused.png similarity index 100% rename from src/main/resources/assets/notebook/textures/gui/next_book/focused.png rename to src/main/resources/assets/notebook/textures/gui/sprites/next_book/focused.png diff --git a/src/main/resources/assets/notebook/textures/gui/next_book/unfocused.png b/src/main/resources/assets/notebook/textures/gui/sprites/next_book/unfocused.png similarity index 100% rename from src/main/resources/assets/notebook/textures/gui/next_book/unfocused.png rename to src/main/resources/assets/notebook/textures/gui/sprites/next_book/unfocused.png