diff --git a/icon.svg b/assets/icon.svg
similarity index 100%
rename from icon.svg
rename to assets/icon.svg
diff --git a/icon.svg.import b/assets/icon.svg.import
similarity index 76%
rename from icon.svg.import
rename to assets/icon.svg.import
index f32c9bc..be1902e 100644
--- a/icon.svg.import
+++ b/assets/icon.svg.import
@@ -3,15 +3,15 @@
 importer="texture"
 type="CompressedTexture2D"
 uid="uid://dknv7amroftm8"
-path="res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"
+path="res://.godot/imported/icon.svg-56083ea2a1f1a4f1e49773bdc6d7826c.ctex"
 metadata={
 "vram_texture": false
 }
 
 [deps]
 
-source_file="res://icon.svg"
-dest_files=["res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"]
+source_file="res://assets/icon.svg"
+dest_files=["res://.godot/imported/icon.svg-56083ea2a1f1a4f1e49773bdc6d7826c.ctex"]
 
 [params]
 
diff --git a/project.godot b/project.godot
index 0936554..d298b9d 100644
--- a/project.godot
+++ b/project.godot
@@ -14,7 +14,7 @@ config/name="Skyblock"
 config/version="0.0.1"
 run/main_scene="uid://cgx0nawwjjj7g"
 config/features=PackedStringArray("4.4", "Forward Plus")
-config/icon="res://icon.svg"
+config/icon="res://assets/icon.svg"
 
 [autoload]
 
diff --git a/root.tscn b/scenes/root.tscn
similarity index 100%
rename from root.tscn
rename to scenes/root.tscn
diff --git a/scenes/ui/inventory/item_rect.tscn b/scenes/ui/inventory/item_rect.tscn
index fe9fb36..3871537 100644
--- a/scenes/ui/inventory/item_rect.tscn
+++ b/scenes/ui/inventory/item_rect.tscn
@@ -1,6 +1,6 @@
 [gd_scene load_steps=4 format=3 uid="uid://boueuk2hnfvg"]
 
-[ext_resource type="Texture2D" uid="uid://dknv7amroftm8" path="res://icon.svg" id="1_o0kom"]
+[ext_resource type="Texture2D" uid="uid://dknv7amroftm8" path="res://assets/icon.svg" id="1_o0kom"]
 [ext_resource type="Script" uid="uid://cknl6i0jce5jr" path="res://scenes/ui/inventory/item_rect.gd" id="1_oderi"]
 
 [sub_resource type="LabelSettings" id="LabelSettings_oderi"]
diff --git a/scenes/ui/quick_slots.gd b/scenes/ui/quick_slots.gd
index 81f003a..046b59d 100644
--- a/scenes/ui/quick_slots.gd
+++ b/scenes/ui/quick_slots.gd
@@ -70,7 +70,6 @@ func select_previous_item() -> void:
 func select_next_item() -> void:
 	select_quick_slot(_selected_item + 1)
 
-
 func update_highlighted_slot() -> void:
 	var previous_slot: Panel = slots_container.get_child(_previous_selected_item)
 	var current_slot: Panel = slots_container.get_child(_selected_item)