diff --git a/MrBigsock/Assets/Code/Core/Abilities/BasicProjectile2.cs b/MrBigsock/Assets/Code/Core/Abilities/BasicProjectile2.cs
index 03ec41247beed2eefcd2a50d33089c6eabc4634e..cf848b71f4371de4d902db420585a41db95339e8 100644
--- a/MrBigsock/Assets/Code/Core/Abilities/BasicProjectile2.cs
+++ b/MrBigsock/Assets/Code/Core/Abilities/BasicProjectile2.cs
@@ -16,7 +16,8 @@ namespace BigSock {
 	public class BasicProjectile2 : BaseAttack {
 		//protected static readonly GameObject PROJECTILE_BASE = new AttackMovement();
 		public const string PROJECTILE_NAME = "bullets/basicsquarebullet";
-		public const string AUDIO_PATH = "The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/explosions/Shortest/sfx_exp_shortest_hard1";
+		//public const string AUDIO_PATH = "The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala\\explosions\\Shortest\\sfx_exp_shortest_hard1";
+		public const string AUDIO_PATH = "theessentialretrovideogamesoundeffectscollection[512sounds]byjuhanijunkala\\explosions\\short\\sfxexpshorthard16";
 
 		
 		public override ulong Id => 104;
diff --git a/MrBigsock/Assets/Code/Services/AudioService.cs b/MrBigsock/Assets/Code/Services/AudioService.cs
index ce122a06438b2ee551d4d697de1ea7fb04a51622..676c447766318665dcc855dd2664f59d7c1520f3 100644
--- a/MrBigsock/Assets/Code/Services/AudioService.cs
+++ b/MrBigsock/Assets/Code/Services/AudioService.cs
@@ -3,6 +3,7 @@ using System;
 using System.Linq;
 using System.Collections.Generic;
 using System.Reflection;
+using System.IO;
 
 using UnityEngine;
 using UnityEngine.InputSystem;
@@ -46,6 +47,22 @@ namespace BigSock.Service {
 			Based on: https://stackoverflow.com/a/67670629
 		*/
 		private void _loadItems() {
+			var dict = new Dictionary<string, AudioClip>();
+
+			foreach (string file in Directory.EnumerateFiles("Assets\\Resources\\sound", "*.*", SearchOption.AllDirectories)) {
+				// Skip meta files.
+				if(file.Contains(".meta")) continue;
+				var name = _sanitize(file.Replace(".wav", "").Replace(".mp3", "").Replace("Assets\\Resources\\sound\\", ""));
+				AudioClip go = Resources.Load<AudioClip>( file.Replace("Assets\\Resources\\", "").Replace(".wav", "").Replace(".mp3", "") );
+				Debug.Log($"[AudioService._loadItems()] {name}");
+				if(go == null) Debug.Log($"[AudioService._loadItems()] ITEM IS NULL!!! {name}");
+				dict[name] = go;
+			}
+			
+			_items = dict;
+		}
+
+		private void _loadItems2() {
 			string[] guids = AssetDatabase.FindAssets( "t:AudioClip", new string[] {"Assets/sound"} );
 
 			var dict = new Dictionary<string, AudioClip>();
@@ -63,7 +80,7 @@ namespace BigSock.Service {
 		}
 
 		private string _sanitize(string name)
-			=> name.Replace(" ", "").Replace("_", "").ToLower();
+			=> name.Replace("/", "\\").Replace(" ", "").Replace("_", "").ToLower();
 
 	}
 }
\ No newline at end of file
diff --git a/MrBigsock/Assets/Code/Services/PrefabService.cs b/MrBigsock/Assets/Code/Services/PrefabService.cs
index 3586eebbc3159b5f31ab2eec9c99ca3e8c25ba8c..40173638baffb0dd523fbc0b7a164f146eecaf2a 100644
--- a/MrBigsock/Assets/Code/Services/PrefabService.cs
+++ b/MrBigsock/Assets/Code/Services/PrefabService.cs
@@ -3,6 +3,7 @@ using System;
 using System.Linq;
 using System.Collections.Generic;
 using System.Reflection;
+using System.IO;
 
 using UnityEngine;
 using UnityEngine.InputSystem;
@@ -79,13 +80,29 @@ namespace BigSock.Service {
 			Based on: https://stackoverflow.com/a/67670629
 		*/
 		private void _loadItems() {
-			string[] guids = AssetDatabase.FindAssets( "t:Prefab", new string[] {"Assets/Prefabs"} );
+			var dict = new Dictionary<string, GameObject>();
+
+			foreach (string file in Directory.EnumerateFiles("Assets\\Resources\\Prefabs", "*.*", SearchOption.AllDirectories)) {
+				// Skip meta files.
+				if(file.Contains(".meta")) continue;
+				var name = _sanitize(file.Replace(".prefab", "").Replace("Assets\\Resources\\Prefabs\\", ""));
+				GameObject go = Resources.Load<GameObject>( file.Replace("Assets\\Resources\\", "").Replace(".prefab", "") );
+				//Debug.Log($"[AudioService._loadItems()] {name}");
+				//if(go == null) Debug.Log($"[AudioService._loadItems()] ITEM IS NULL!!! {name}");
+				dict[name] = go;
+			}
+			
+			_prefabs = dict;
+		}
+
+		private void _loadItems2() {
+			string[] guids = AssetDatabase.FindAssets( "t:Prefab", new string[] {"Assets/Resources/Prefabs"} );
 
 			var dict = new Dictionary<string, GameObject>();
 
 			foreach(var guid in guids) {
 				var path = AssetDatabase.GUIDToAssetPath( guid );
-				var name = _sanitize(path.Replace(".prefab", "").Replace("Assets/Prefabs/", ""));
+				var name = _sanitize(path.Replace(".prefab", "").Replace("Assets/Resources/Prefabs/", ""));
 				GameObject go = AssetDatabase.LoadAssetAtPath<GameObject>( path );
 
 				//Debug.Log($"[PrefabService._loadItems()] {name}");
@@ -96,7 +113,7 @@ namespace BigSock.Service {
 		}
 
 		private string _sanitize(string name)
-			=> name.Replace(" ", "").Replace("_", "").ToLower();
+			=> name.Replace("/", "\\").Replace(" ", "").Replace("_", "").ToLower();
 
 	}
 }
\ No newline at end of file
diff --git a/MrBigsock/Assets/Code/Services/SpriteService.cs b/MrBigsock/Assets/Code/Services/SpriteService.cs
index d52249f930c58d7843d9a99eef328fbf1ae47461..8616bdd612d3ac6c2cb99ab78f0e868eaa03f16c 100644
--- a/MrBigsock/Assets/Code/Services/SpriteService.cs
+++ b/MrBigsock/Assets/Code/Services/SpriteService.cs
@@ -3,6 +3,7 @@ using System;
 using System.Linq;
 using System.Collections.Generic;
 using System.Reflection;
+using System.IO;
 
 using UnityEngine;
 using UnityEngine.InputSystem;
@@ -46,13 +47,28 @@ namespace BigSock.Service {
 			Based on: https://stackoverflow.com/a/67670629
 		*/
 		private void _loadItems() {
-			string[] guids = AssetDatabase.FindAssets( "t:Sprite", new string[] {"Assets/Sprites"} );
+			var dict = new Dictionary<string, Sprite>();
+
+			foreach (string file in Directory.EnumerateFiles("Assets\\Resources\\Sprites", "*.*", SearchOption.AllDirectories)) {
+				// Skip meta files.
+				if(file.Contains(".meta")) continue;
+				var name = _sanitize(file.Replace(".png", "").Replace(".jpg", "").Replace("Assets\\Resources\\Sprites\\", ""));
+				Sprite go = Resources.Load<Sprite>( file.Replace("Assets\\Resources\\", "").Replace(".png", "").Replace(".jpg", "") );
+				//Debug.Log($"[AudioService._loadItems()] {name}");
+				//if(go == null) Debug.Log($"[AudioService._loadItems()] ITEM IS NULL!!! {name}");
+				dict[name] = go;
+			}
+			
+			_sprites = dict;
+		}
+		private void _loadItems2() {
+			string[] guids = AssetDatabase.FindAssets( "t:Sprite", new string[] {"Assets/Resources/Sprites"} );
 
 			var dict = new Dictionary<string, Sprite>();
 
 			foreach(var guid in guids) {
 				var path = AssetDatabase.GUIDToAssetPath( guid );
-				var name = _sanitize(path.Replace(".png", "").Replace(".jpg", "").Replace("Assets/Sprites/", ""));
+				var name = _sanitize(path.Replace(".png", "").Replace(".jpg", "").Replace("Assets/Resources/Sprites/", ""));
 				Sprite go = AssetDatabase.LoadAssetAtPath<Sprite>( path );
 
 				//Debug.Log($"[SpriteService._loadItems()] {name}");
@@ -63,7 +79,7 @@ namespace BigSock.Service {
 		}
 
 		private string _sanitize(string name)
-			=> name.Replace(" ", "").Replace("_", "").ToLower();
+			=> name.Replace("/", "\\").Replace(" ", "").Replace("_", "").ToLower();
 
 	}
 }
\ No newline at end of file
diff --git a/MrBigsock/Assets/Resources.meta b/MrBigsock/Assets/Resources.meta
new file mode 100644
index 0000000000000000000000000000000000000000..e049eb9eea9410e6f388f22c4a6548b29eba4dfb
--- /dev/null
+++ b/MrBigsock/Assets/Resources.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: d8025453ac102614fa3718324f74e318
+folderAsset: yes
+DefaultImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Prefabs.meta b/MrBigsock/Assets/Resources/Prefabs.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs.meta
rename to MrBigsock/Assets/Resources/Prefabs.meta
diff --git a/MrBigsock/Assets/Prefabs/.gitkeep b/MrBigsock/Assets/Resources/Prefabs/.gitkeep
similarity index 100%
rename from MrBigsock/Assets/Prefabs/.gitkeep
rename to MrBigsock/Assets/Resources/Prefabs/.gitkeep
diff --git a/MrBigsock/Assets/Prefabs/BigSock.prefab b/MrBigsock/Assets/Resources/Prefabs/BigSock.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/BigSock.prefab
rename to MrBigsock/Assets/Resources/Prefabs/BigSock.prefab
diff --git a/MrBigsock/Assets/Prefabs/BigSock.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/BigSock.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/BigSock.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/BigSock.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/Bosses.meta b/MrBigsock/Assets/Resources/Prefabs/Bosses.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Bosses.meta
rename to MrBigsock/Assets/Resources/Prefabs/Bosses.meta
diff --git a/MrBigsock/Assets/Prefabs/Bosses/Attacks.meta b/MrBigsock/Assets/Resources/Prefabs/Bosses/Attacks.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Bosses/Attacks.meta
rename to MrBigsock/Assets/Resources/Prefabs/Bosses/Attacks.meta
diff --git a/MrBigsock/Assets/Prefabs/Bosses/Attacks/Bringer_of_Death_Spell.prefab b/MrBigsock/Assets/Resources/Prefabs/Bosses/Attacks/Bringer_of_Death_Spell.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Bosses/Attacks/Bringer_of_Death_Spell.prefab
rename to MrBigsock/Assets/Resources/Prefabs/Bosses/Attacks/Bringer_of_Death_Spell.prefab
diff --git a/MrBigsock/Assets/Prefabs/Bosses/Attacks/Bringer_of_Death_Spell.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/Bosses/Attacks/Bringer_of_Death_Spell.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Bosses/Attacks/Bringer_of_Death_Spell.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/Bosses/Attacks/Bringer_of_Death_Spell.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/Bosses/Bringer_of_Death.prefab b/MrBigsock/Assets/Resources/Prefabs/Bosses/Bringer_of_Death.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Bosses/Bringer_of_Death.prefab
rename to MrBigsock/Assets/Resources/Prefabs/Bosses/Bringer_of_Death.prefab
diff --git a/MrBigsock/Assets/Prefabs/Bosses/Bringer_of_Death.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/Bosses/Bringer_of_Death.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Bosses/Bringer_of_Death.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/Bosses/Bringer_of_Death.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/Bosses/Skeleton_Boss.prefab b/MrBigsock/Assets/Resources/Prefabs/Bosses/Skeleton_Boss.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Bosses/Skeleton_Boss.prefab
rename to MrBigsock/Assets/Resources/Prefabs/Bosses/Skeleton_Boss.prefab
diff --git a/MrBigsock/Assets/Prefabs/Bosses/Skeleton_Boss.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/Bosses/Skeleton_Boss.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Bosses/Skeleton_Boss.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/Bosses/Skeleton_Boss.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/Bullets.meta b/MrBigsock/Assets/Resources/Prefabs/Bullets.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Bullets.meta
rename to MrBigsock/Assets/Resources/Prefabs/Bullets.meta
diff --git a/MrBigsock/Assets/Prefabs/Bullets/basic square bullet.prefab b/MrBigsock/Assets/Resources/Prefabs/Bullets/basic square bullet.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Bullets/basic square bullet.prefab
rename to MrBigsock/Assets/Resources/Prefabs/Bullets/basic square bullet.prefab
diff --git a/MrBigsock/Assets/Prefabs/Bullets/basic square bullet.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/Bullets/basic square bullet.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Bullets/basic square bullet.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/Bullets/basic square bullet.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/Bullets/big slow bullet.prefab b/MrBigsock/Assets/Resources/Prefabs/Bullets/big slow bullet.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Bullets/big slow bullet.prefab
rename to MrBigsock/Assets/Resources/Prefabs/Bullets/big slow bullet.prefab
diff --git a/MrBigsock/Assets/Prefabs/Bullets/big slow bullet.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/Bullets/big slow bullet.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Bullets/big slow bullet.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/Bullets/big slow bullet.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/Bullets/enemy_arrow.prefab b/MrBigsock/Assets/Resources/Prefabs/Bullets/enemy_arrow.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Bullets/enemy_arrow.prefab
rename to MrBigsock/Assets/Resources/Prefabs/Bullets/enemy_arrow.prefab
diff --git a/MrBigsock/Assets/Prefabs/Bullets/enemy_arrow.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/Bullets/enemy_arrow.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Bullets/enemy_arrow.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/Bullets/enemy_arrow.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/Enemy_Slime.prefab b/MrBigsock/Assets/Resources/Prefabs/Enemy_Slime.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Enemy_Slime.prefab
rename to MrBigsock/Assets/Resources/Prefabs/Enemy_Slime.prefab
diff --git a/MrBigsock/Assets/Prefabs/Enemy_Slime.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/Enemy_Slime.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Enemy_Slime.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/Enemy_Slime.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/Map.meta b/MrBigsock/Assets/Resources/Prefabs/Map.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Map.meta
rename to MrBigsock/Assets/Resources/Prefabs/Map.meta
diff --git a/MrBigsock/Assets/Prefabs/Map/Room.prefab b/MrBigsock/Assets/Resources/Prefabs/Map/Room.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Map/Room.prefab
rename to MrBigsock/Assets/Resources/Prefabs/Map/Room.prefab
diff --git a/MrBigsock/Assets/Prefabs/Map/Room.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/Map/Room.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/Map/Room.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/Map/Room.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/UI.meta b/MrBigsock/Assets/Resources/Prefabs/UI.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI.meta
rename to MrBigsock/Assets/Resources/Prefabs/UI.meta
diff --git a/MrBigsock/Assets/Prefabs/UI/Button.prefab b/MrBigsock/Assets/Resources/Prefabs/UI/Button.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/Button.prefab
rename to MrBigsock/Assets/Resources/Prefabs/UI/Button.prefab
diff --git a/MrBigsock/Assets/Prefabs/UI/Button.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/UI/Button.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/Button.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/UI/Button.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/UI/ChestContents.prefab b/MrBigsock/Assets/Resources/Prefabs/UI/ChestContents.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/ChestContents.prefab
rename to MrBigsock/Assets/Resources/Prefabs/UI/ChestContents.prefab
diff --git a/MrBigsock/Assets/Prefabs/UI/ChestContents.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/UI/ChestContents.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/ChestContents.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/UI/ChestContents.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/UI/HPBar.prefab b/MrBigsock/Assets/Resources/Prefabs/UI/HPBar.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/HPBar.prefab
rename to MrBigsock/Assets/Resources/Prefabs/UI/HPBar.prefab
diff --git a/MrBigsock/Assets/Prefabs/UI/HPBar.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/UI/HPBar.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/HPBar.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/UI/HPBar.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/UI/Inventory.prefab b/MrBigsock/Assets/Resources/Prefabs/UI/Inventory.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/Inventory.prefab
rename to MrBigsock/Assets/Resources/Prefabs/UI/Inventory.prefab
diff --git a/MrBigsock/Assets/Prefabs/UI/Inventory.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/UI/Inventory.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/Inventory.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/UI/Inventory.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/UI/InventorySlot.prefab b/MrBigsock/Assets/Resources/Prefabs/UI/InventorySlot.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/InventorySlot.prefab
rename to MrBigsock/Assets/Resources/Prefabs/UI/InventorySlot.prefab
diff --git a/MrBigsock/Assets/Prefabs/UI/InventorySlot.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/UI/InventorySlot.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/InventorySlot.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/UI/InventorySlot.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/UI/Item.prefab b/MrBigsock/Assets/Resources/Prefabs/UI/Item.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/Item.prefab
rename to MrBigsock/Assets/Resources/Prefabs/UI/Item.prefab
diff --git a/MrBigsock/Assets/Prefabs/UI/Item.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/UI/Item.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/Item.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/UI/Item.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/UI/PlayerMenu.prefab b/MrBigsock/Assets/Resources/Prefabs/UI/PlayerMenu.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/PlayerMenu.prefab
rename to MrBigsock/Assets/Resources/Prefabs/UI/PlayerMenu.prefab
diff --git a/MrBigsock/Assets/Prefabs/UI/PlayerMenu.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/UI/PlayerMenu.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/PlayerMenu.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/UI/PlayerMenu.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/UI/StatsPanel.prefab b/MrBigsock/Assets/Resources/Prefabs/UI/StatsPanel.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/StatsPanel.prefab
rename to MrBigsock/Assets/Resources/Prefabs/UI/StatsPanel.prefab
diff --git a/MrBigsock/Assets/Prefabs/UI/StatsPanel.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/UI/StatsPanel.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/StatsPanel.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/UI/StatsPanel.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/UI/UtilityBar.prefab b/MrBigsock/Assets/Resources/Prefabs/UI/UtilityBar.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/UtilityBar.prefab
rename to MrBigsock/Assets/Resources/Prefabs/UI/UtilityBar.prefab
diff --git a/MrBigsock/Assets/Prefabs/UI/UtilityBar.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/UI/UtilityBar.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/UtilityBar.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/UI/UtilityBar.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/UI/XpBar.prefab b/MrBigsock/Assets/Resources/Prefabs/UI/XpBar.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/XpBar.prefab
rename to MrBigsock/Assets/Resources/Prefabs/UI/XpBar.prefab
diff --git a/MrBigsock/Assets/Prefabs/UI/XpBar.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/UI/XpBar.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/UI/XpBar.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/UI/XpBar.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/attack.prefab b/MrBigsock/Assets/Resources/Prefabs/attack.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/attack.prefab
rename to MrBigsock/Assets/Resources/Prefabs/attack.prefab
diff --git a/MrBigsock/Assets/Prefabs/attack.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/attack.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/attack.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/attack.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/backgroundMusic.prefab b/MrBigsock/Assets/Resources/Prefabs/backgroundMusic.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/backgroundMusic.prefab
rename to MrBigsock/Assets/Resources/Prefabs/backgroundMusic.prefab
diff --git a/MrBigsock/Assets/Prefabs/backgroundMusic.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/backgroundMusic.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/backgroundMusic.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/backgroundMusic.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/enemy_orc_range.prefab b/MrBigsock/Assets/Resources/Prefabs/enemy_orc_range.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/enemy_orc_range.prefab
rename to MrBigsock/Assets/Resources/Prefabs/enemy_orc_range.prefab
diff --git a/MrBigsock/Assets/Prefabs/enemy_orc_range.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/enemy_orc_range.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/enemy_orc_range.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/enemy_orc_range.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/enemy_orc_warrior.prefab b/MrBigsock/Assets/Resources/Prefabs/enemy_orc_warrior.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/enemy_orc_warrior.prefab
rename to MrBigsock/Assets/Resources/Prefabs/enemy_orc_warrior.prefab
diff --git a/MrBigsock/Assets/Prefabs/enemy_orc_warrior.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/enemy_orc_warrior.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/enemy_orc_warrior.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/enemy_orc_warrior.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/furry_demon.prefab b/MrBigsock/Assets/Resources/Prefabs/furry_demon.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/furry_demon.prefab
rename to MrBigsock/Assets/Resources/Prefabs/furry_demon.prefab
diff --git a/MrBigsock/Assets/Prefabs/furry_demon.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/furry_demon.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/furry_demon.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/furry_demon.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/golem.prefab b/MrBigsock/Assets/Resources/Prefabs/golem.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/golem.prefab
rename to MrBigsock/Assets/Resources/Prefabs/golem.prefab
diff --git a/MrBigsock/Assets/Prefabs/golem.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/golem.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/golem.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/golem.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/large_orc.prefab b/MrBigsock/Assets/Resources/Prefabs/large_orc.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/large_orc.prefab
rename to MrBigsock/Assets/Resources/Prefabs/large_orc.prefab
diff --git a/MrBigsock/Assets/Prefabs/large_orc.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/large_orc.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/large_orc.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/large_orc.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/skleton-range.prefab b/MrBigsock/Assets/Resources/Prefabs/skleton-range.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/skleton-range.prefab
rename to MrBigsock/Assets/Resources/Prefabs/skleton-range.prefab
diff --git a/MrBigsock/Assets/Prefabs/skleton-range.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/skleton-range.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/skleton-range.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/skleton-range.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/small_demon.prefab b/MrBigsock/Assets/Resources/Prefabs/small_demon.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/small_demon.prefab
rename to MrBigsock/Assets/Resources/Prefabs/small_demon.prefab
diff --git a/MrBigsock/Assets/Prefabs/small_demon.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/small_demon.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/small_demon.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/small_demon.prefab.meta
diff --git a/MrBigsock/Assets/Prefabs/small_orc.prefab b/MrBigsock/Assets/Resources/Prefabs/small_orc.prefab
similarity index 100%
rename from MrBigsock/Assets/Prefabs/small_orc.prefab
rename to MrBigsock/Assets/Resources/Prefabs/small_orc.prefab
diff --git a/MrBigsock/Assets/Prefabs/small_orc.prefab.meta b/MrBigsock/Assets/Resources/Prefabs/small_orc.prefab.meta
similarity index 100%
rename from MrBigsock/Assets/Prefabs/small_orc.prefab.meta
rename to MrBigsock/Assets/Resources/Prefabs/small_orc.prefab.meta
diff --git a/MrBigsock/Assets/Sprites.meta b/MrBigsock/Assets/Resources/Sprites.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites.meta
rename to MrBigsock/Assets/Resources/Sprites.meta
diff --git a/MrBigsock/Assets/Sprites/.gitkeep b/MrBigsock/Assets/Resources/Sprites/.gitkeep
similarity index 100%
rename from MrBigsock/Assets/Sprites/.gitkeep
rename to MrBigsock/Assets/Resources/Sprites/.gitkeep
diff --git a/MrBigsock/Assets/Sprites/Enemy.meta b/MrBigsock/Assets/Resources/Sprites/Enemy.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/.gitkeep b/MrBigsock/Assets/Resources/Sprites/Enemy/.gitkeep
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/.gitkeep
rename to MrBigsock/Assets/Resources/Sprites/Enemy/.gitkeep
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/.gitkeep b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/.gitkeep
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/.gitkeep
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/.gitkeep
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/furry_demon.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/furry_demon.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/furry_demon.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/furry_demon.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/furry_demon/furry_demon.controller b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/furry_demon/furry_demon.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/furry_demon/furry_demon.controller
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/furry_demon/furry_demon.controller
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/furry_demon/furry_demon.controller.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/furry_demon/furry_demon.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/furry_demon/furry_demon.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/furry_demon/furry_demon.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/furry_demon/furry_demon_idle.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/furry_demon/furry_demon_idle.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/furry_demon/furry_demon_idle.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/furry_demon/furry_demon_idle.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/furry_demon/furry_demon_idle.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/furry_demon/furry_demon_idle.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/furry_demon/furry_demon_idle.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/furry_demon/furry_demon_idle.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/furry_demon/furry_demon_run.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/furry_demon/furry_demon_run.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/furry_demon/furry_demon_run.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/furry_demon/furry_demon_run.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/furry_demon/furry_demon_run.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/furry_demon/furry_demon_run.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/furry_demon/furry_demon_run.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/furry_demon/furry_demon_run.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/golem.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/golem.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/golem.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/golem.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/golem/golem.controller b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/golem/golem.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/golem/golem.controller
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/golem/golem.controller
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/golem/golem.controller.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/golem/golem.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/golem/golem.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/golem/golem.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/golem/golem_idle.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/golem/golem_idle.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/golem/golem_idle.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/golem/golem_idle.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/golem/golem_idle.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/golem/golem_idle.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/golem/golem_idle.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/golem/golem_idle.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/golem/golem_run.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/golem/golem_run.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/golem/golem_run.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/golem/golem_run.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/golem/golem_run.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/golem/golem_run.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/golem/golem_run.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/golem/golem_run.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/large_orc.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/large_orc.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/large_orc.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/large_orc.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/large_orc/large_orc.controller b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/large_orc/large_orc.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/large_orc/large_orc.controller
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/large_orc/large_orc.controller
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/large_orc/large_orc.controller.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/large_orc/large_orc.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/large_orc/large_orc.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/large_orc/large_orc.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/large_orc/large_orc_idle.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/large_orc/large_orc_idle.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/large_orc/large_orc_idle.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/large_orc/large_orc_idle.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/large_orc/large_orc_idle.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/large_orc/large_orc_idle.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/large_orc/large_orc_idle.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/large_orc/large_orc_idle.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/large_orc/large_orc_run.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/large_orc/large_orc_run.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/large_orc/large_orc_run.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/large_orc/large_orc_run.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/large_orc/large_orc_run.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/large_orc/large_orc_run.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/large_orc/large_orc_run.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/large_orc/large_orc_run.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/Materials.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/Materials.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/Materials.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/Materials.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/Materials/orc_warrior_idle_anim_f0.mat b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/Materials/orc_warrior_idle_anim_f0.mat
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/Materials/orc_warrior_idle_anim_f0.mat
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/Materials/orc_warrior_idle_anim_f0.mat
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/Materials/orc_warrior_idle_anim_f0.mat.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/Materials/orc_warrior_idle_anim_f0.mat.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/Materials/orc_warrior_idle_anim_f0.mat.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/Materials/orc_warrior_idle_anim_f0.mat.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/bow.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/bow.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/Bow and Arrows.png.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation_controller.controller b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation_controller.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation_controller.controller
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation_controller.controller
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation_controller.controller.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation_controller.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation_controller.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/bow/bow_animation_controller.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior.controller b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior.controller
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior.controller
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior.controller.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_attack.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_attack.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_attack.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_attack.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_attack.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_attack.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_attack.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_attack.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.controller b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.controller
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.controller
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.controller.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f0.png.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f1.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f1.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f1.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f1.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f1.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f1.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f1.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f1.png.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f2.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f2.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f2.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f2.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f2.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f2.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f2.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f2.png.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f3.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f3.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f3.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f3.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f3.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f3.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f3.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_idle_anim_f3.png.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f0.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f0.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f0.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f0.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f0.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f0.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f0.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f0.png.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f1.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f1.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f1.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f1.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f1.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f1.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f1.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f1.png.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f2.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f2.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f2.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f2.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f2.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f2.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f2.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f2.png.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f3.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f3.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f3.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f3.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f3.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f3.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f3.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/orc_warrior/orc_warrior_run_anim_f3.png.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/skeleton.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/skeleton.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/skeleton.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/skeleton.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/skeleton/skeleton.controller b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/skeleton/skeleton.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/skeleton/skeleton.controller
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/skeleton/skeleton.controller
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/skeleton/skeleton.controller.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/skeleton/skeleton.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/skeleton/skeleton.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/skeleton/skeleton.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/skeleton/skeleton_attack.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/skeleton/skeleton_attack.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/skeleton/skeleton_attack.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/skeleton/skeleton_attack.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/skeleton/skeleton_attack.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/skeleton/skeleton_attack.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/skeleton/skeleton_attack.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/skeleton/skeleton_attack.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/skeleton/skeleton_walk.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/skeleton/skeleton_walk.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/skeleton/skeleton_walk.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/skeleton/skeleton_walk.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/skeleton/skeleton_walk.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/skeleton/skeleton_walk.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/skeleton/skeleton_walk.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/skeleton/skeleton_walk.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/slime.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/slime.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/slime.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/slime.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/small_demon.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_demon.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/small_demon.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_demon.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/small_demon/small_demon.controller b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_demon/small_demon.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/small_demon/small_demon.controller
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_demon/small_demon.controller
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/small_demon/small_demon.controller.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_demon/small_demon.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/small_demon/small_demon.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_demon/small_demon.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/small_demon/small_demon_idle.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_demon/small_demon_idle.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/small_demon/small_demon_idle.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_demon/small_demon_idle.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/small_demon/small_demon_idle.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_demon/small_demon_idle.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/small_demon/small_demon_idle.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_demon/small_demon_idle.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/small_demon/small_demon_run.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_demon/small_demon_run.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/small_demon/small_demon_run.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_demon/small_demon_run.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/small_demon/small_demon_run.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_demon/small_demon_run.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/small_demon/small_demon_run.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_demon/small_demon_run.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/small_orc.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_orc.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/small_orc.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_orc.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/small_orc/small_orc.controller b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_orc/small_orc.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/small_orc/small_orc.controller
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_orc/small_orc.controller
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/small_orc/small_orc.controller.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_orc/small_orc.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/small_orc/small_orc.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_orc/small_orc.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/small_orc/small_orc_idle.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_orc/small_orc_idle.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/small_orc/small_orc_idle.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_orc/small_orc_idle.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/small_orc/small_orc_idle.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_orc/small_orc_idle.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/small_orc/small_orc_idle.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_orc/small_orc_idle.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/small_orc/small_orc_run.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_orc/small_orc_run.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/small_orc/small_orc_run.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_orc/small_orc_run.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Animations/small_orc/small_orc_run.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_orc/small_orc_run.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Animations/small_orc/small_orc_run.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Animations/small_orc/small_orc_run.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death.controller b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death.controller
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death.controller
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death.controller.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death_Spell.controller b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death_Spell.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death_Spell.controller
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death_Spell.controller
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death_Spell.controller.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death_Spell.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death_Spell.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/Bringer_of_Death_Spell.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/attack.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/attack.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/attack.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/attack.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/attack.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/attack.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/attack.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/attack.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/cast.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/cast.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/cast.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/cast.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/cast.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/cast.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/cast.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/cast.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/death.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/death.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/death.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/death.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/death.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/death.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/death.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/death.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/hurt.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/hurt.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/hurt.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/hurt.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/hurt.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/hurt.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/hurt.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/hurt.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/idle.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/idle.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/idle.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/idle.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/idle.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/idle.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/idle.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/idle.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/spell.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/spell.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/spell.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/spell.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/spell.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/spell.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/spell.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/spell.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/walk.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/walk.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/walk.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/walk.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/walk.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/walk.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Bringer_of_Death/walk.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Bringer_of_Death/walk.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/Skeleton_Boss.controller b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/Skeleton_Boss.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/Skeleton_Boss.controller
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/Skeleton_Boss.controller
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/Skeleton_Boss.controller.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/Skeleton_Boss.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/Skeleton_Boss.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/Skeleton_Boss.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/attack.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/attack.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/attack.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/attack.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/attack.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/attack.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/attack.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/attack.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/death.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/death.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/death.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/death.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/death.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/death.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/death.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/death.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/idle.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/idle.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/idle.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/idle.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/idle.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/idle.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/idle.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/idle.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/take_damage.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/take_damage.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/take_damage.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/take_damage.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/take_damage.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/take_damage.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/take_damage.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/take_damage.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/walk.anim b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/walk.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/walk.anim
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/walk.anim
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/walk.anim.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/walk.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Animations/Skeleton_Boss/walk.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Animations/Skeleton_Boss/walk.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_1.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_1.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_1.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_1.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_1.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_1.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_1.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_1.png.meta
index 403c488ea2a59cf58b8cf4d9e1f6c15667dbb8cb..4cfc4cf885c15979b08f651da2c60e05ae40dd8c 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_1.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_1.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_10.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_10.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_10.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_10.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_10.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_10.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_10.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_10.png.meta
index d55643a24cc868253704d7972a9f45e0f0cd2fa2..39512039cfcbcdb3cb6377a288a9493b2f3e0dee 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_10.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_10.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_2.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_2.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_2.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_2.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_2.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_2.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_2.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_2.png.meta
index e0613c1c53ed089c5b12b71db30b0b3f8d9b06e9..d3100aa4264d8c833a075af4f54740a5eb60ab43 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_2.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_2.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_3.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_3.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_3.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_3.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_3.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_3.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_3.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_3.png.meta
index 5fd3fe520e5e4d0f55e993fdb2ccd954278b7c88..f04423a837583a95d80c88fa6ccf3851ecb52470 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_3.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_3.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_4.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_4.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_4.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_4.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_4.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_4.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_4.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_4.png.meta
index a2bc520d4647893bde2dac6e991adbfd0644be7c..81470a1c4dc81f4d78a58aedc4adb40cb5205139 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_4.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_4.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_5.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_5.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_5.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_5.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_5.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_5.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_5.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_5.png.meta
index 625972946f7a9fe2b66120f7668c6ff529cce827..58eb585e9b21dc08deec78842886ce5a4c96a9dc 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_5.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_5.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_6.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_6.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_6.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_6.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_6.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_6.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_6.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_6.png.meta
index b24c23930d4b53a8645a328980ab7b8cb9331bbd..d47ad8b5ccab3cab255456bd6614d7a1f0a83403 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_6.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_6.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_7.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_7.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_7.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_7.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_7.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_7.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_7.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_7.png.meta
index a417aaff75a9d8241a3903c7b699245c3e27e88b..db1ca4c2d387c1dadc0b484f2bc63bcdc5deba54 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_7.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_7.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_8.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_8.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_8.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_8.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_8.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_8.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_8.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_8.png.meta
index 3935ac22d39529f38f078d5f2eb82e01900b9545..dcb2bf4b826c302f84d4f6d96e4ed7a121818928 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_8.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_8.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_9.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_9.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_9.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_9.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_9.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_9.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_9.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_9.png.meta
index 9cf90957eb5c28be0dc430fee30ee3d9030faf43..0ed58b9c47b0f0e04d2132ed2db5431bf7de3481 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_9.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/Bringer-of-Death_Attack_9.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Item/coffee.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/coffee.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/coffee.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/coffee.png
diff --git a/MrBigsock/Assets/Sprites/Item/coffee.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/coffee.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/coffee.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/coffee.png.meta
diff --git a/MrBigsock/Assets/Sprites/Item/elixirofspeed.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/elixirofspeed.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/elixirofspeed.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/elixirofspeed.png
diff --git a/MrBigsock/Assets/Sprites/Item/elixirofspeed.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/elixirofspeed.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/elixirofspeed.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/elixirofspeed.png.meta
diff --git a/MrBigsock/Assets/Sprites/Item/foureyes.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/foureyes.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/foureyes.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/foureyes.png
diff --git a/MrBigsock/Assets/Sprites/Item/foureyes.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/foureyes.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/foureyes.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/foureyes.png.meta
diff --git a/MrBigsock/Assets/Sprites/Item/lunch.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/lunch.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/lunch.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/lunch.png
diff --git a/MrBigsock/Assets/Sprites/Item/lunch.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/lunch.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/lunch.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/lunch.png.meta
diff --git a/MrBigsock/Assets/Sprites/Item/plasticstraw.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/plasticstraw.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/plasticstraw.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/plasticstraw.png
diff --git a/MrBigsock/Assets/Sprites/Item/plasticstraw.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/plasticstraw.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/plasticstraw.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/plasticstraw.png.meta
diff --git a/MrBigsock/Assets/Sprites/Item/premature.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/premature.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/premature.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/premature.png
diff --git a/MrBigsock/Assets/Sprites/Item/premature.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/premature.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/premature.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/premature.png.meta
diff --git a/MrBigsock/Assets/Sprites/Item/runningshoes.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/runningshoes.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/runningshoes.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/runningshoes.png
diff --git a/MrBigsock/Assets/Sprites/Item/runningshoes.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/runningshoes.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/runningshoes.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Attack/runningshoes.png.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_1.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_1.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_1.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_1.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_1.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_1.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_1.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_1.png.meta
index cc1029fcda5da527ae9fe7c264b4a60cfc136dec..bcca14c4d69307f0eefa175f9fa5fd8fff0a3201 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_1.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_1.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_2.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_2.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_2.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_2.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_2.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_2.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_2.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_2.png.meta
index c0a2d35b23c18886421c8f725720e3b758b6f654..2d81e90c2659c03c6c9ee8add6b667c46f0a030f 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_2.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_2.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_3.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_3.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_3.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_3.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_3.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_3.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_3.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_3.png.meta
index 0d6e99350a2333599778771af4b7e19189caa788..13aca1949548977371ae3ed3b3da8add2aa40d8b 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_3.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_3.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_4.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_4.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_4.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_4.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_4.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_4.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_4.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_4.png.meta
index 53f1e36dbd9e5b8ee0129c0a0814e4ad8cb12efa..354b3d86a5ded877db93e9c5a75bd26397a5b6f9 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_4.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_4.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_5.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_5.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_5.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_5.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_5.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_5.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_5.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_5.png.meta
index 7b79ba58a2d4a00e3dddb1f3ecef7e633f46ace1..f9a57764041abaf20ee2500c0a7bd6bb174befa1 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_5.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_5.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_6.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_6.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_6.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_6.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_6.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_6.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_6.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_6.png.meta
index a557606dcf5080a06fe85fc22deb50283810001e..f8d22f4eae8502f58d27b3d6849a9d5a4e269fa4 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_6.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_6.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_7.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_7.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_7.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_7.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_7.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_7.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_7.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_7.png.meta
index 4f3234612900675645a183b584d77c7558c84ccd..cd44aa2b6eb2538fa82e96e6ad52caf06c81d1bf 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_7.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_7.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_8.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_8.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_8.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_8.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_8.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_8.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_8.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_8.png.meta
index 5460e6cf1be66b61b617f15b0f09e8c6d5279e9b..7dc73958ae9383f978cf981fbc38e516b6bd2c45 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_8.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_8.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_9.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_9.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_9.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_9.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_9.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_9.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_9.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_9.png.meta
index d2a99dca190fbdb385129a1746b3ce7097b54df1..58df0e55aefd0ca336a639c8a09cc4ac4df88da7 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_9.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Cast/Bringer-of-Death_Cast_9.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_1.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_1.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_1.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_1.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_1.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_1.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_1.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_1.png.meta
index 6f148a5cacfb93f20395a528ceadebb5e7ebb0c6..a0b2d1349d13dec7f80f9f97b05a87896a5b3ba2 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_1.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_1.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_10.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_10.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_10.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_10.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_10.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_10.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_10.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_10.png.meta
index e7ddc465ea400859cc86f5178321ec2e5ec20ba9..f2b7e4cce2fbf8526ad583df1b3c8887e12ce4b3 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_10.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_10.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_2.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_2.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_2.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_2.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_2.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_2.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_2.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_2.png.meta
index e5504b0d398b9968c8c9551e094c06a837387dae..4ca9780f8b227cf9005961c1c3e9664758acde47 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_2.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_2.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_3.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_3.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_3.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_3.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_3.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_3.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_3.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_3.png.meta
index 9d1e871e909971e93f5485e82061b4d71532369b..cdda19f7a300998f34218f1419bdb4f5002ee198 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_3.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_3.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_4.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_4.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_4.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_4.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_4.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_4.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_4.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_4.png.meta
index 98a93e5359551380acb283d32adbc0af6e2146ed..ed5c2ae6b36f12c0adc49e3ed3d789c3bade0985 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_4.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_4.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_5.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_5.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_5.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_5.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_5.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_5.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_5.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_5.png.meta
index 6d86092bb6f7036bf8dc5b63edd0a56f8b73e4a1..f8f50e53c694af49c45f3bb89145082ec5f16e8a 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_5.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_5.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_6.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_6.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_6.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_6.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_6.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_6.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_6.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_6.png.meta
index 9b5406e51232b6e29223dbdb624e17ddbef73f1c..a0f2c073b14d8cacc8ca2d9a869ecfbd6ee0d401 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_6.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_6.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_7.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_7.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_7.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_7.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_7.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_7.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_7.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_7.png.meta
index 24801503c66e16d581690ea2168ca46fd06bd87a..347f9b7f2bedeea22dc44e3ab89931ef751638f7 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_7.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_7.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_8.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_8.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_8.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_8.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_8.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_8.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_8.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_8.png.meta
index d9f41af925bd67d2a9be85181ca57f3d86994833..067843c5578fbb3ba39eeda3700190d3cc18f8c5 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_8.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_8.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_9.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_9.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_9.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_9.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_9.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_9.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_9.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_9.png.meta
index 6cbfd5b2a329518cf6757488519f463f275782a0..215c01afbdf68ace8b4c1e5ff90bb11c3b1f7029 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_9.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Death/Bringer-of-Death_Death_9.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_1.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_1.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_1.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_1.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_1.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_1.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_1.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_1.png.meta
index af83219d557aeb0470c995f4ac9db16a43e129d2..12faebf083c9168921aa5893585e4152874c97a8 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_1.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_1.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_2.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_2.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_2.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_2.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_2.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_2.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_2.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_2.png.meta
index 8a97d0ae4a7bbceb3a62888ba6b98c177d004b22..1755eb47c3f6b76cf000a855549f6886b73cf0f5 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_2.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_2.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_3.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_3.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_3.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_3.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_3.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_3.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_3.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_3.png.meta
index 43c45fcc34e8373baa041676fac550a64f2aae42..d340836a7693159e63bea65f26c52ddb955bc43f 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_3.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Hurt/Bringer-of-Death_Hurt_3.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_1.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_1.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_1.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_1.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_1.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_1.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_1.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_1.png.meta
index 5e373c25a48693825d3d3b579f03eac6d127e99e..b983ef1e0fb35d5a7e8f966ecfa29d178ec1afb7 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_1.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_1.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_2.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_2.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_2.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_2.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_2.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_2.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_2.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_2.png.meta
index 837dee976492275285643da3e09bd7aafa2d5cc6..10cdc7b8cf43a12fcd115601004e9d47ed3ed8df 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_2.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_2.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_3.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_3.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_3.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_3.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_3.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_3.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_3.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_3.png.meta
index 8df96d9803c1516671c828fb5d28a1c2c91ce618..171fd804a4e923f34c670b69fbdc4b18fe8d8d87 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_3.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_3.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_4.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_4.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_4.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_4.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_4.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_4.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_4.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_4.png.meta
index 8cbe72f6401e9279a1286dcca58fb49ca0880963..71deaf8cc3376cb224f37dd3ae23cf3af379e6ad 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_4.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_4.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_5.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_5.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_5.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_5.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_5.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_5.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_5.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_5.png.meta
index 4057bdf9ef64bb65123c989dce7f508094b63c45..bc4c87c2f6a1202dc9e351e3ba797d60f0ab2275 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_5.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_5.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_6.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_6.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_6.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_6.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_6.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_6.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_6.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_6.png.meta
index 799a815541f9c41f98536d7639a71c978a29b71d..08fa884a7ceb4d8d833a31e9dae706a648a8c929 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_6.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_6.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_7.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_7.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_7.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_7.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_7.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_7.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_7.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_7.png.meta
index 4516c441d88357c0016aa2fbe346515b2acb9766..36d2bfa4f12c7aa8477de1f5d1ba6d3d1fbd1230 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_7.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_7.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_8.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_8.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_8.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_8.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_8.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_8.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_8.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_8.png.meta
index 9521eddabb48c55a4b22872db99983dd76bea974..0c5d928ec7b3b2154fea3b8759381e5ede3e50ec 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_8.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Idle/Bringer-of-Death_Idle_8.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_1.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_1.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_1.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_1.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_1.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_1.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_1.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_1.png.meta
index 9d54a323127fd20a7b055cdbaea58b45de4ac81c..fa4bf0772f64bcfb68e9af2cbeba5ee4cd23fd9e 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_1.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_1.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_10.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_10.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_10.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_10.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_10.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_10.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_10.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_10.png.meta
index 5507f2f8456f58189c9969864d07dbad07bc55af..216853987ca8327d021a505fc7a4e1c13677da9c 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_10.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_10.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_2.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_2.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_2.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_2.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_2.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_2.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_2.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_2.png.meta
index ec975110a20cb59a582b62f3728204f8ee852d14..5d6939ad181ddaf67b632b41e5e9e3b56f6419fa 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_2.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_2.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_3.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_3.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_3.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_3.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_3.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_3.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_3.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_3.png.meta
index 033f5ae11ff9e1ec295d3488589446eeeb0595a3..341e38578fa9a710125ac5adbbe47afb442a8a71 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_3.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_3.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_4.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_4.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_4.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_4.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_4.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_4.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_4.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_4.png.meta
index ecfea8db92765eb1b567932b039eb44a72ae7c01..83de018b4c76a93a2f6c29b569820f2679f234b8 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_4.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_4.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_5.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_5.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_5.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_5.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_5.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_5.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_5.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_5.png.meta
index 7983b1178647a98e85cb33115aa2fd237ddc26b6..0e245ff8f39d7415a802b6486fd326b9f6c44487 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_5.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_5.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_6.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_6.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_6.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_6.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_6.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_6.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_6.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_6.png.meta
index 2b9e3169282f8317e603096cd5e604f3479957d0..3ad0f9a28d8856076c2a218864421ed78446963b 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_6.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_6.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_7.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_7.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_7.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_7.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_7.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_7.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_7.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_7.png.meta
index dfa6c3f33e324a56420c181bc4e8106bd5e92252..2b081d17596f1729229b741585022fc49ed91f7b 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_7.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_7.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_8.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_8.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_8.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_8.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_8.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_8.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_8.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_8.png.meta
index c25b391218ac6c1a5c21d0900f1939fddd417bed..b6ad1f8d950b804289cbba436c9050dac170c190 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_8.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_8.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_9.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_9.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_9.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_9.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_9.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_9.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_9.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_9.png.meta
index f0d12d9f3972e356a810633456b56d831d6289c1..5d20b55b26a87bdabb94d5d1d049ca94681fe4ed 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_9.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Attack/Bringer-of-Death_Attack_9.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_1.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_1.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_1.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_1.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_1.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_1.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_1.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_1.png.meta
index 0d503b9e1502605804d0d4e2e0eb62411146c1f8..78ed2b80c499de856c982862490227ff93276428 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_1.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_1.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_2.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_2.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_2.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_2.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_2.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_2.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_2.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_2.png.meta
index 0f0929ec575a564aa9eed3c87a2ab83c3918287e..8ca05e292b31318ff4408fe5113738a0b7a08d7e 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_2.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_2.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_3.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_3.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_3.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_3.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_3.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_3.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_3.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_3.png.meta
index 8b8453e0de5d2fcbb1e2152fbdfeb37c9b7d4a08..2558a50ef31711e86eefd1a75deaa9a7186fc30d 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_3.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_3.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_4.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_4.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_4.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_4.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_4.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_4.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_4.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_4.png.meta
index ee0f370c5af0d921f9e87382c884c0569352d876..eb95f119bd730a017a6c889438ad72fde0aad4e8 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_4.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_4.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_5.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_5.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_5.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_5.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_5.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_5.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_5.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_5.png.meta
index 0d6e0817828583d6b4b2c3ba8d8644fc828a446e..8c82d0a2fcbee97389b55d7737ba932f2a72ea05 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_5.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_5.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_6.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_6.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_6.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_6.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_6.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_6.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_6.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_6.png.meta
index 9de30631840b1ee3ab2cbb78fa108fdcc174d132..cf4a4fab1485c4825c1cda8a8d59e8dbc4e51b88 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_6.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_6.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_7.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_7.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_7.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_7.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_7.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_7.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_7.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_7.png.meta
index c1e74a4fd1e23c1ce325fd5503c4f0f5cb03de4a..a4b2a81400bbd4f965f5b22249b3b16fce3deb80 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_7.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_7.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_8.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_8.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_8.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_8.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_8.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_8.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_8.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_8.png.meta
index 764d8e5bb4ccd22946f0a98be0067aef0856335c..b0644d794667df986aaa31a533e74593ec3bea3e 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_8.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_8.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_9.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_9.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_9.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_9.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_9.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_9.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_9.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_9.png.meta
index d6464c3c744afec794d52d1d28f046f711f908a3..f31ed0f9a9f190e26b83639cc5bbb0c65548d05d 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_9.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Cast/Bringer-of-Death_Cast_9.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_1.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_1.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_1.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_1.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_1.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_1.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_1.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_1.png.meta
index 56377f257389e3d44e5c5e3004dda29a7b15983f..364274b77db5b5802c4c7741a18cb6cce0cbcf67 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_1.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_1.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_10.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_10.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_10.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_10.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_10.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_10.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_10.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_10.png.meta
index 98ecc7e5a444275c81fbaa8e4ce4ccca9687b534..d9603df8c4426fe2100ee8b33d11ffeb09220f1a 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_10.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_10.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_2.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_2.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_2.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_2.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_2.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_2.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_2.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_2.png.meta
index c55895a05be11a7d8c6c9bd721f52b9313e851ef..ee224637d2685168139f1711a5b03a56f9060b07 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_2.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_2.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_3.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_3.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_3.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_3.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_3.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_3.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_3.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_3.png.meta
index 91a987c4700a33b673dd95726e8d65b73665dc46..59a1e90b8046a210038cb09b47dc06f6a90b3e8a 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_3.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_3.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_4.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_4.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_4.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_4.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_4.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_4.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_4.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_4.png.meta
index d2f6f27fe0fd97b5ae44d82b920c550578783fd6..991f7eaf1630fd86cd678ea126e161fd31cd136e 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_4.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_4.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_5.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_5.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_5.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_5.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_5.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_5.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_5.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_5.png.meta
index 10b094e781d6cd6859c726832f4711b7d4531244..bfd1078e09908792611e9ae9af9fa47752ec3a76 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_5.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_5.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_6.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_6.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_6.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_6.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_6.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_6.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_6.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_6.png.meta
index 11ba8f4f26f20d87cc55466a287b6ab599933cc9..b74db7abcce8599d7632df04d22898de69c6dc7e 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_6.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_6.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_7.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_7.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_7.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_7.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_7.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_7.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_7.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_7.png.meta
index dfb718f7291c3affc1e3b8945c7c0dc16c523e6a..0da85edd6f14440c235cde9a1ded912f636fe0b7 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_7.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_7.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_8.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_8.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_8.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_8.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_8.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_8.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_8.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_8.png.meta
index 8e0e1ccd38d0f5c3e535cc3bc7bfb87c240cbb66..0be5f2e31df0986ec37d1719ae4da065c314bfcf 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_8.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_8.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_9.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_9.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_9.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_9.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_9.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_9.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_9.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_9.png.meta
index de36a2cabc374260803d9526a55d9b4d1c9646e0..e803c51ca92db5d0f582003ad7fce607c8a5ee44 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_9.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Death/Bringer-of-Death_Death_9.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_1.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_1.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_1.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_1.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_1.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_1.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_1.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_1.png.meta
index 74989b85924403e5e22b7fd5bf59e5a50480958c..c6afc3335185bb8606fa6eb12c3de76a8866ad95 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_1.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_1.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_2.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_2.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_2.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_2.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_2.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_2.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_2.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_2.png.meta
index 63c319906205e6fd966bf70206e71b82a0929f0e..be8196f3d5768422114324395cf4980d592ddf81 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_2.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_2.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_3.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_3.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_3.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_3.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_3.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_3.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_3.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_3.png.meta
index 55cd2394b327e06e42485b87d20ea98c591939f0..f9d7d922425ee83ca1238db195ac391c646ed6b8 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_3.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Hurt/Bringer-of-Death_Hurt_3.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_1.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_1.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_1.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_1.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_1.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_1.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_1.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_1.png.meta
index 7884b60ad746905080827e60600504bdcb6a81a2..ff27794f2bdcd49de6ddfc2a0f533ebe815a539b 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_1.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_1.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_10.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_10.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_10.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_10.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_10.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_10.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_10.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_10.png.meta
index 2313ca793798b92620b71e4cad7e2d4c93ded115..3e153741af3eaacdcb5c335aaab914cd4fe4129f 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_10.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_10.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_11.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_11.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_11.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_11.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_11.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_11.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_11.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_11.png.meta
index f5111a8c386f6b28c0ef01d2f9bd9f9b0f667554..e81d58dfeac43506cf91add95b46d441c1020c46 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_11.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_11.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_12.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_12.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_12.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_12.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_12.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_12.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_12.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_12.png.meta
index b835284b2a8cc7565100dcd507dcdb96f41e0cab..424b8249dbce074135b864858596b2ca05fbb62d 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_12.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_12.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_13.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_13.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_13.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_13.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_13.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_13.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_13.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_13.png.meta
index af978762afac70c45169b2d88c887c439cd96362..d9a4d1c287cff96dfe9940ad3d3f43664a9c93e1 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_13.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_13.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_14.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_14.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_14.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_14.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_14.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_14.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_14.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_14.png.meta
index a4ad5ecce805a018e13d68c517048cfa4ccb2a9f..61da6eb9f63a4cb0f5552f0cd7901ad8719b0bc2 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_14.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_14.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_15.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_15.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_15.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_15.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_15.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_15.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_15.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_15.png.meta
index 62edc501e529468723c3d435eda5624eb00e1d58..4cbba3551d22f8a38272b5734ab3af0504b33131 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_15.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_15.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_16.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_16.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_16.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_16.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_16.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_16.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_16.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_16.png.meta
index 219906fe13f941d29aec943af6d03a84f6c7bf3d..27b2b95c97a49544e7f390dadc2688d71b1fbd2f 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_16.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_16.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_2.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_2.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_2.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_2.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_2.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_2.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_2.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_2.png.meta
index fb6374a56112cd69be4b5d2a051580c9a89a22e6..dcd5380da6ef41ecf02fb99b4802ffb420234c43 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_2.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_2.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_3.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_3.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_3.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_3.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_3.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_3.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_3.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_3.png.meta
index 45c8f0800868d13705feeea513faf056da943638..8ba987dc3947e2ddde9c6242d51f9f71e6953111 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_3.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_3.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_4.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_4.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_4.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_4.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_4.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_4.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_4.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_4.png.meta
index cbc6b50a705813f1ccd8e60fad74005836d9a38f..2048023275610a7a6ffbb410b75f83e95c444d26 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_4.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_4.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_5.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_5.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_5.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_5.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_5.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_5.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_5.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_5.png.meta
index 4806a64786dd30b4b1463f69a4a4cf34980060a6..1f42b6231d57603a7acd69d3f1dd0f30a8ab269b 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_5.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_5.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_6.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_6.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_6.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_6.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_6.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_6.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_6.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_6.png.meta
index 053e1acb6eaa0dfb4489671a1c77cff65a8fbab5..df518bbdfea9fde4e2d3f1d663f844c953606a77 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_6.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_6.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_7.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_7.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_7.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_7.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_7.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_7.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_7.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_7.png.meta
index 4780f3a38f6bc7389ad98f60fa6921069c5e9e26..d4a9de989fc056dca99289d1b29904412bb907d4 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_7.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_7.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_8.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_8.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_8.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_8.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_8.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_8.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_8.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_8.png.meta
index 7f8fdc04adf75932c110d28a01b9b6d4193951f1..d7f761eee1d50954f5efba2f5eed86aefa5b2920 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_8.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_8.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_9.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_9.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_9.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_9.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_9.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_9.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_9.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_9.png.meta
index 82fd3d2e569abec1d9af275c381eccdce5f1aadd..d2d8415561b0a94635d245966e1b855226a210f7 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_9.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/No Effect Sprites/Spell/Bringer-of-Death_Spell_9.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_1.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_1.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_1.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_1.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_1.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_1.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_1.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_1.png.meta
index 34d308b82e8fb4eba45fc60e52589bf2013412ce..8cdb6f028f48125c5be0fc74b24451eb0e8f9097 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_1.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_1.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_10.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_10.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_10.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_10.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_10.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_10.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_10.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_10.png.meta
index 431509d5c28a12fd5d4031ad56f0cf1d6fabf69a..df1ee12a86129bbf0fc7d6e997c3ad80d4861bd0 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_10.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_10.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_11.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_11.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_11.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_11.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_11.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_11.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_11.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_11.png.meta
index 5caf1aef5c528a339c1ad74e93acaf72adcabcb3..1ba57cdffe0c80ceaf2d74c3ac557f5f6f152b4a 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_11.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_11.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_12.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_12.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_12.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_12.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_12.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_12.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_12.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_12.png.meta
index c588dc9394b7f8b2fbc590fe0955621362fa46a7..3cde9fdd4eecca91f43f3068bad140b05b4f0461 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_12.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_12.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_13.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_13.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_13.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_13.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_13.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_13.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_13.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_13.png.meta
index 89c2a120e67c2befd1c57a47d968a3bf90675c45..4609ab48187ac498bc1c404f3b6f5ca4849de031 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_13.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_13.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_14.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_14.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_14.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_14.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_14.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_14.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_14.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_14.png.meta
index 323edfa5ed4893ea17e24b13f0fc160113f71f52..02fdae5775399b99d8f7826bf965966fa0c306f8 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_14.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_14.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_15.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_15.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_15.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_15.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_15.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_15.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_15.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_15.png.meta
index 0e0e207b5f8626d90efa6f146318e0dbeae74916..959acf33323bf92a538a96bec1e1196f89c4bad8 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_15.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_15.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_16.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_16.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_16.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_16.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_16.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_16.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_16.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_16.png.meta
index 9f390d5f8328d9bfd1294c7a8498bc3cc670ddcd..cc105b05de3286b490c2ea1b3781c8589ee57afc 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_16.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_16.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_2.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_2.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_2.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_2.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_2.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_2.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_2.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_2.png.meta
index c9fd046e29e7d8b098226c289d24d0e2deafc140..c762b109c7f28047cac82bd90cc04978e5e0a8c7 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_2.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_2.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_3.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_3.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_3.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_3.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_3.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_3.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_3.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_3.png.meta
index 3ba3432561317b2c1d753eacad7ccb986d1cbb72..74c3601d06148907d352c3011a7fac1c3b11daab 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_3.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_3.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_4.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_4.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_4.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_4.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_4.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_4.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_4.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_4.png.meta
index 336e33e24713b3f6880adac036b55bdfe5e13e12..3a50f280bf64de030a26cace7d92031f63459664 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_4.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_4.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_5.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_5.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_5.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_5.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_5.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_5.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_5.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_5.png.meta
index 071461105a905e183629dfc429bbce3757e06973..03912710137457ba468b213b9b89354b0462eded 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_5.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_5.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_6.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_6.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_6.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_6.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_6.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_6.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_6.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_6.png.meta
index 69c29d44d96474b8c80a06234e2ea20050d79743..0a9ae7ba45cebbea937d838dadc9e552e115c26e 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_6.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_6.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_7.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_7.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_7.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_7.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_7.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_7.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_7.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_7.png.meta
index d6a12b6bdddb6fc40b2671ee0100669dc6bd0368..81da2eb98d686d7a21eb933f89ebd4ddbc1123dc 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_7.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_7.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_8.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_8.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_8.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_8.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_8.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_8.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_8.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_8.png.meta
index d0a6e5cf381154050ef8166f591844002da3e228..941b8647741404181bc3345971d9421f62744545 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_8.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_8.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_9.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_9.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_9.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_9.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_9.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_9.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_9.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_9.png.meta
index ba81058149be40c0871aa0983115c537e572031a..cf69ed77f5c328fa8bc040784302a751d8226100 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_9.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Spell/Bringer-of-Death_Spell_9.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_1.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_1.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_1.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_1.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_1.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_1.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_1.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_1.png.meta
index 69db45bf9237dd56f75941050d7125af6f1d483f..8c592d676f8977e249d60904bda0bf8e1aac36df 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_1.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_1.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_2.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_2.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_2.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_2.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_2.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_2.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_2.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_2.png.meta
index fa5a6394d0d148958bb261e173e3022ea7322d97..fc52cc1ef6257efefeea5109899fe370c331a36a 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_2.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_2.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_3.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_3.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_3.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_3.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_3.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_3.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_3.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_3.png.meta
index 1ead470a77243bfeaa1cdb4653d203eb2898793b..935d1b2ced89d0f589faf0f25398588a72951dbe 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_3.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_3.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_4.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_4.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_4.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_4.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_4.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_4.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_4.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_4.png.meta
index c592a5b53ad7866e18656ea29556bd5c70c16aa8..f4f44c96e81ba565da35e00f72e3dba27b15fa7f 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_4.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_4.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_5.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_5.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_5.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_5.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_5.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_5.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_5.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_5.png.meta
index 33ebbc4b4dacd346b3d67f2ac64b17ddd447aa6b..df2392662707069c31ef1a012769e0d3562d8ceb 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_5.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_5.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_6.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_6.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_6.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_6.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_6.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_6.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_6.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_6.png.meta
index 84b8678bc1bad14b33c0dad42b0d5763a0f3ede5..1053800f9cd3db41ec93aaacf3b33c1e44ad3e59 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_6.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_6.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_7.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_7.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_7.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_7.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_7.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_7.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_7.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_7.png.meta
index c6189afcb899f50269fe869372fd36fdfbb1a710..91acbd9813631c521a3bbf422467669e1862f352 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_7.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_7.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_8.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_8.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_8.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_8.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_8.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_8.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_8.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_8.png.meta
index f2036d91ec2a62f97b26843b8abc770adbeb0e37..4180425bfc21925230bc4bf39ad47bece6a6b9c8 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_8.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/Individual Sprite/Walk/Bringer-of-Death_Walk_8.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet.png.meta
similarity index 99%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet.png.meta
index 102d0ec1e76bcd068d1b5e36374ce7a47a119e3c..3a831ee1bb3ed9379a97d441d49828c90b970925 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet.png.meta
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet.png.meta
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites:
@@ -1495,10 +1507,10 @@ TextureImporter:
       Bringer-of-Death-SpritSheet_3: -1354585760
       Bringer-of-Death-SpritSheet_62: -1981653235
       Bringer-of-Death-SpritSheet_32: -758833498
-      Bringer-of-Death-SpritSheet_6: -2002076032
       Bringer-of-Death-SpritSheet_41: 249659269
-      Bringer-of-Death-SpritSheet_21: -133352305
       Bringer-of-Death-SpritSheet_1: 959836911
+      Bringer-of-Death-SpritSheet_21: -133352305
+      Bringer-of-Death-SpritSheet_6: -2002076032
       Bringer-of-Death-SpritSheet_0: -216419084
       Bringer-of-Death-SpritSheet_22: 1421686516
       Bringer-of-Death-SpritSheet_20: 1849084138
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet_no-Effect.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet_no-Effect.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet_no-Effect.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet_no-Effect.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet_no-Effect.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet_no-Effect.png.meta
similarity index 89%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet_no-Effect.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet_no-Effect.png.meta
index d7c17aa49c75f2957b69117983a0c2284b85f51c..db740ff08e1c44615ca3fe31a75e9b53d23350d0 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet_no-Effect.png.meta
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Bringer_of_death/SpriteSheet/Bringer-of-Death-SpritSheet_no-Effect.png.meta
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Skeleton enemy.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Skeleton enemy.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Skeleton enemy.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Skeleton enemy.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Skeleton enemy.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Skeleton enemy.png.meta
similarity index 98%
rename from MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Skeleton enemy.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Skeleton enemy.png.meta
index 1ad35b3885def89563de835756d8e68828775a3c..384a2a53aa08b0b026fb3eaf4e4de8bdc9499c83 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Boss/Sprites/Skeleton enemy.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Boss/Sprites/Skeleton enemy.png.meta	
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites:
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png.meta
index 09e688d4f01ca9a74d1d3a1e3bbf50b81324c5f6..4ca9a3beb884ef7a3e93b2a33c67de11b5ad027d 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png.meta	
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton.png.meta	
@@ -1228,8 +1228,8 @@ TextureImporter:
       Archer Skeleton_21: -1276893573
       Archer Skeleton_31: 380057764
       Archer Skeleton_38: 2105159634
-      Archer Skeleton_34: 1960391730
       Archer Skeleton_50: -856143105
+      Archer Skeleton_34: 1960391730
       Archer Skeleton_16: -368848275
       Archer Skeleton_36: -227535706
       Archer Skeleton_3: 1825370165
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Archer Skeleton_0.controller b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton_0.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Archer Skeleton_0.controller
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton_0.controller
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Archer Skeleton_0.controller.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton_0.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Archer Skeleton_0.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton_0.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Archer Skeleton_6.controller b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton_6.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Archer Skeleton_6.controller
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton_6.controller
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Archer Skeleton_6.controller.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton_6.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Archer Skeleton_6.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Archer Skeleton_6.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/One-eyed Bat.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/One-eyed Bat.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/One-eyed Bat.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/One-eyed Bat.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/One-eyed Bat.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/One-eyed Bat.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/One-eyed Bat.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/One-eyed Bat.png.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Slime Mob.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Slime Mob.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Slime Mob.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Slime Mob.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Slime Mob.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Slime Mob.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/Slime Mob.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/Slime Mob.png.meta
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/large_enemies.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/large_enemies.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/large_enemies.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/large_enemies.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/large_enemies.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/large_enemies.png.meta
similarity index 97%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/large_enemies.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/large_enemies.png.meta
index 0ecbce00e1252f656e025bf7652f145b6e75135e..17bf91aa3590393a94226599bbb158bf2d4d4ffc 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/large_enemies.png.meta
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/large_enemies.png.meta
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites:
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/medium_enemies.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/medium_enemies.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/medium_enemies.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/medium_enemies.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/medium_enemies.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/medium_enemies.png.meta
similarity index 98%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/medium_enemies.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/medium_enemies.png.meta
index c456fb0d5b9686beb657ce7d7736ff3212bc79ae..8f1f0363948a5decd26e26c970b0366d1069b3ab 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/medium_enemies.png.meta
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/medium_enemies.png.meta
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites:
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/small_enemies.png b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/small_enemies.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/small_enemies.png
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/small_enemies.png
diff --git a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/small_enemies.png.meta b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/small_enemies.png.meta
similarity index 98%
rename from MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/small_enemies.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/small_enemies.png.meta
index 7fc0add72d0d19e322dcd94de1d00e7774b63f8f..94edbb4989ac3f0052dc51b68959bcb9cda8d418 100644
--- a/MrBigsock/Assets/Sprites/Enemy/Enemy_sprites/small_enemies.png.meta
+++ b/MrBigsock/Assets/Resources/Sprites/Enemy/Enemy_sprites/small_enemies.png.meta
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites:
diff --git a/MrBigsock/Assets/Sprites/Item.meta b/MrBigsock/Assets/Resources/Sprites/Item.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item.meta
rename to MrBigsock/Assets/Resources/Sprites/Item.meta
diff --git a/MrBigsock/Assets/Sprites/Item/.gitkeep b/MrBigsock/Assets/Resources/Sprites/Item/.gitkeep
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/.gitkeep
rename to MrBigsock/Assets/Resources/Sprites/Item/.gitkeep
diff --git a/MrBigsock/Assets/Sprites/Item/BreadWithJamx16.png b/MrBigsock/Assets/Resources/Sprites/Item/BreadWithJamx16.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/BreadWithJamx16.png
rename to MrBigsock/Assets/Resources/Sprites/Item/BreadWithJamx16.png
diff --git a/MrBigsock/Assets/Sprites/Item/BreadWithJamx16.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/BreadWithJamx16.png.meta
similarity index 90%
rename from MrBigsock/Assets/Sprites/Item/BreadWithJamx16.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Item/BreadWithJamx16.png.meta
index 2b4e76cba71e516e1346378b5b8c8fbd31c6936d..d035f4244e886bf2f337193d03231f52271d5038 100644
--- a/MrBigsock/Assets/Sprites/Item/BreadWithJamx16.png.meta
+++ b/MrBigsock/Assets/Resources/Sprites/Item/BreadWithJamx16.png.meta
@@ -113,6 +113,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites: []
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/Canvas.controller b/MrBigsock/Assets/Resources/Sprites/Item/Canvas.controller
new file mode 100644
index 0000000000000000000000000000000000000000..e7ebc7ece33243803fe37f91e4d74fc100280c13
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/Canvas.controller
@@ -0,0 +1,72 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1107 &-5715601486444831835
+AnimatorStateMachine:
+  serializedVersion: 6
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: Base Layer
+  m_ChildStates:
+  - serializedVersion: 1
+    m_State: {fileID: 2101813797707696144}
+    m_Position: {x: 200, y: 0, z: 0}
+  m_ChildStateMachines: []
+  m_AnyStateTransitions: []
+  m_EntryTransitions: []
+  m_StateMachineTransitions: {}
+  m_StateMachineBehaviours: []
+  m_AnyStatePosition: {x: 50, y: 20, z: 0}
+  m_EntryPosition: {x: 50, y: 120, z: 0}
+  m_ExitPosition: {x: 800, y: 120, z: 0}
+  m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+  m_DefaultState: {fileID: 2101813797707696144}
+--- !u!91 &9100000
+AnimatorController:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: Canvas
+  serializedVersion: 5
+  m_AnimatorParameters: []
+  m_AnimatorLayers:
+  - serializedVersion: 5
+    m_Name: Base Layer
+    m_StateMachine: {fileID: -5715601486444831835}
+    m_Mask: {fileID: 0}
+    m_Motions: []
+    m_Behaviours: []
+    m_BlendingMode: 0
+    m_SyncedLayerIndex: -1
+    m_DefaultWeight: 0
+    m_IKPass: 0
+    m_SyncedLayerAffectsTiming: 0
+    m_Controller: {fileID: 9100000}
+--- !u!1102 &2101813797707696144
+AnimatorState:
+  serializedVersion: 6
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: OpeningDoor
+  m_Speed: 1
+  m_CycleOffset: 0
+  m_Transitions: []
+  m_StateMachineBehaviours: []
+  m_Position: {x: 50, y: 50, z: 0}
+  m_IKOnFeet: 0
+  m_WriteDefaultValues: 1
+  m_Mirror: 0
+  m_SpeedParameterActive: 0
+  m_MirrorParameterActive: 0
+  m_CycleOffsetParameterActive: 0
+  m_TimeParameterActive: 0
+  m_Motion: {fileID: 7400000, guid: 55d643fdfce97604587565dfe5114d9b, type: 2}
+  m_Tag: 
+  m_SpeedParameter: 
+  m_MirrorParameter: 
+  m_CycleOffsetParameter: 
+  m_TimeParameter: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/Canvas.controller.meta b/MrBigsock/Assets/Resources/Sprites/Item/Canvas.controller.meta
new file mode 100644
index 0000000000000000000000000000000000000000..335274074396f72efe0a96e52157d694d8e1599c
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/Canvas.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 68dc6c99db5c10f4daf1f80a2ec61096
+NativeFormatImporter:
+  externalObjects: {}
+  mainObjectFileID: 9100000
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/ClosedChest.controller b/MrBigsock/Assets/Resources/Sprites/Item/ClosedChest.controller
new file mode 100644
index 0000000000000000000000000000000000000000..5aa46682244d9727caae1c0cc7c58209d6b45027
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/ClosedChest.controller
@@ -0,0 +1,205 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1102 &-9102936364586265109
+AnimatorState:
+  serializedVersion: 6
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: Idle
+  m_Speed: 1
+  m_CycleOffset: 1
+  m_Transitions:
+  - {fileID: 2179366303297943155}
+  m_StateMachineBehaviours: []
+  m_Position: {x: 50, y: 50, z: 0}
+  m_IKOnFeet: 0
+  m_WriteDefaultValues: 1
+  m_Mirror: 0
+  m_SpeedParameterActive: 0
+  m_MirrorParameterActive: 0
+  m_CycleOffsetParameterActive: 0
+  m_TimeParameterActive: 0
+  m_Motion: {fileID: 0}
+  m_Tag: 
+  m_SpeedParameter: 
+  m_MirrorParameter: 
+  m_CycleOffsetParameter: 
+  m_TimeParameter: 
+--- !u!1102 &-4254591718707031978
+AnimatorState:
+  serializedVersion: 6
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: Idle 0
+  m_Speed: 1
+  m_CycleOffset: 1
+  m_Transitions:
+  - {fileID: 1491831612463993281}
+  m_StateMachineBehaviours: []
+  m_Position: {x: 50, y: 50, z: 0}
+  m_IKOnFeet: 0
+  m_WriteDefaultValues: 1
+  m_Mirror: 0
+  m_SpeedParameterActive: 0
+  m_MirrorParameterActive: 0
+  m_CycleOffsetParameterActive: 0
+  m_TimeParameterActive: 0
+  m_Motion: {fileID: 0}
+  m_Tag: 
+  m_SpeedParameter: 
+  m_MirrorParameter: 
+  m_CycleOffsetParameter: 
+  m_TimeParameter: 
+--- !u!1102 &-1393342710840650859
+AnimatorState:
+  serializedVersion: 6
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: ClosingGoldChest
+  m_Speed: -1
+  m_CycleOffset: 0
+  m_Transitions: []
+  m_StateMachineBehaviours: []
+  m_Position: {x: 50, y: 50, z: 0}
+  m_IKOnFeet: 0
+  m_WriteDefaultValues: 1
+  m_Mirror: 0
+  m_SpeedParameterActive: 0
+  m_MirrorParameterActive: 0
+  m_CycleOffsetParameterActive: 0
+  m_TimeParameterActive: 0
+  m_Motion: {fileID: 7400000, guid: 7a666638bfe6cff46a60cb7498be4106, type: 2}
+  m_Tag: 
+  m_SpeedParameter: 
+  m_MirrorParameter: 
+  m_CycleOffsetParameter: 
+  m_TimeParameter: 
+--- !u!1107 &-878898569698988956
+AnimatorStateMachine:
+  serializedVersion: 6
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: Base Layer
+  m_ChildStates:
+  - serializedVersion: 1
+    m_State: {fileID: 4882564813246248277}
+    m_Position: {x: 280, y: 210, z: 0}
+  - serializedVersion: 1
+    m_State: {fileID: -9102936364586265109}
+    m_Position: {x: 290, y: 120, z: 0}
+  - serializedVersion: 1
+    m_State: {fileID: -4254591718707031978}
+    m_Position: {x: 290, y: 30, z: 0}
+  - serializedVersion: 1
+    m_State: {fileID: -1393342710840650859}
+    m_Position: {x: 100, y: 270, z: 0}
+  m_ChildStateMachines: []
+  m_AnyStateTransitions: []
+  m_EntryTransitions: []
+  m_StateMachineTransitions: {}
+  m_StateMachineBehaviours: []
+  m_AnyStatePosition: {x: 50, y: 20, z: 0}
+  m_EntryPosition: {x: 50, y: 120, z: 0}
+  m_ExitPosition: {x: 800, y: 120, z: 0}
+  m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+  m_DefaultState: {fileID: -9102936364586265109}
+--- !u!91 &9100000
+AnimatorController:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: ClosedChest
+  serializedVersion: 5
+  m_AnimatorParameters: []
+  m_AnimatorLayers:
+  - serializedVersion: 5
+    m_Name: Base Layer
+    m_StateMachine: {fileID: -878898569698988956}
+    m_Mask: {fileID: 0}
+    m_Motions: []
+    m_Behaviours: []
+    m_BlendingMode: 0
+    m_SyncedLayerIndex: -1
+    m_DefaultWeight: 0
+    m_IKPass: 0
+    m_SyncedLayerAffectsTiming: 0
+    m_Controller: {fileID: 9100000}
+--- !u!1101 &1491831612463993281
+AnimatorStateTransition:
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: 
+  m_Conditions: []
+  m_DstStateMachine: {fileID: 0}
+  m_DstState: {fileID: -9102936364586265109}
+  m_Solo: 0
+  m_Mute: 0
+  m_IsExit: 0
+  serializedVersion: 3
+  m_TransitionDuration: 0.25
+  m_TransitionOffset: 0
+  m_ExitTime: 0.75
+  m_HasExitTime: 1
+  m_HasFixedDuration: 1
+  m_InterruptionSource: 0
+  m_OrderedInterruption: 1
+  m_CanTransitionToSelf: 1
+--- !u!1101 &2179366303297943155
+AnimatorStateTransition:
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: 
+  m_Conditions: []
+  m_DstStateMachine: {fileID: 0}
+  m_DstState: {fileID: -4254591718707031978}
+  m_Solo: 0
+  m_Mute: 0
+  m_IsExit: 0
+  serializedVersion: 3
+  m_TransitionDuration: 0.25
+  m_TransitionOffset: 0
+  m_ExitTime: 0.75
+  m_HasExitTime: 1
+  m_HasFixedDuration: 1
+  m_InterruptionSource: 0
+  m_OrderedInterruption: 1
+  m_CanTransitionToSelf: 1
+--- !u!1102 &4882564813246248277
+AnimatorState:
+  serializedVersion: 6
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: OpeningGoldChest
+  m_Speed: 1
+  m_CycleOffset: 0
+  m_Transitions: []
+  m_StateMachineBehaviours: []
+  m_Position: {x: 50, y: 50, z: 0}
+  m_IKOnFeet: 0
+  m_WriteDefaultValues: 1
+  m_Mirror: 0
+  m_SpeedParameterActive: 0
+  m_MirrorParameterActive: 0
+  m_CycleOffsetParameterActive: 0
+  m_TimeParameterActive: 0
+  m_Motion: {fileID: 7400000, guid: 7a666638bfe6cff46a60cb7498be4106, type: 2}
+  m_Tag: 
+  m_SpeedParameter: 
+  m_MirrorParameter: 
+  m_CycleOffsetParameter: 
+  m_TimeParameter: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/ClosedChest.controller.meta b/MrBigsock/Assets/Resources/Sprites/Item/ClosedChest.controller.meta
new file mode 100644
index 0000000000000000000000000000000000000000..fc671ff26c985bdfc16e83d49ae3191149f4ec65
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/ClosedChest.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 74461049370202d4da85090bc514ba1f
+NativeFormatImporter:
+  externalObjects: {}
+  mainObjectFileID: 9100000
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/ClosedChest.prefab b/MrBigsock/Assets/Resources/Sprites/Item/ClosedChest.prefab
new file mode 100644
index 0000000000000000000000000000000000000000..273c687c80ae7a78c3f5739ac35259042aef0091
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/ClosedChest.prefab
@@ -0,0 +1,155 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1 &3524574384065166323
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 3424500754593193000}
+  - component: {fileID: 2084913590679028496}
+  - component: {fileID: 9185049823073967866}
+  - component: {fileID: 532417266}
+  - component: {fileID: 532417261}
+  m_Layer: 11
+  m_Name: ClosedChest
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &3424500754593193000
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3524574384065166323}
+  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+  m_LocalPosition: {x: 2.4697871, y: -0.4290728, z: 0}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_ConstrainProportionsScale: 0
+  m_Children: []
+  m_Father: {fileID: 0}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!212 &2084913590679028496
+SpriteRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3524574384065166323}
+  m_Enabled: 1
+  m_CastShadows: 0
+  m_ReceiveShadows: 0
+  m_DynamicOccludee: 1
+  m_StaticShadowCaster: 0
+  m_MotionVectors: 1
+  m_LightProbeUsage: 1
+  m_ReflectionProbeUsage: 1
+  m_RayTracingMode: 0
+  m_RayTraceProcedural: 0
+  m_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
+  m_StaticBatchInfo:
+    firstSubMesh: 0
+    subMeshCount: 0
+  m_StaticBatchRoot: {fileID: 0}
+  m_ProbeAnchor: {fileID: 0}
+  m_LightProbeVolumeOverride: {fileID: 0}
+  m_ScaleInLightmap: 1
+  m_ReceiveGI: 1
+  m_PreserveUVs: 0
+  m_IgnoreNormalsForChartDetection: 0
+  m_ImportantGI: 0
+  m_StitchLightmapSeams: 1
+  m_SelectedEditorRenderState: 0
+  m_MinimumChartSize: 4
+  m_AutoUVMaxDistance: 0.5
+  m_AutoUVMaxAngle: 89
+  m_LightmapParameters: {fileID: 0}
+  m_SortingLayerID: 0
+  m_SortingLayer: 0
+  m_SortingOrder: 1
+  m_Sprite: {fileID: -1476513711, guid: f236c50a7ec8f3b4cb53217789ea98f4, type: 3}
+  m_Color: {r: 1, g: 1, b: 1, a: 1}
+  m_FlipX: 0
+  m_FlipY: 0
+  m_DrawMode: 0
+  m_Size: {x: 1, y: 1}
+  m_AdaptiveModeThreshold: 0.5
+  m_SpriteTileMode: 0
+  m_WasSpriteAssigned: 1
+  m_MaskInteraction: 0
+  m_SpriteSortPoint: 0
+--- !u!114 &9185049823073967866
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3524574384065166323}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: dc1f15113cfc4974ca200a87eff9905c, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  _prompt: 
+  animator: {fileID: 532417261}
+  goldenChestOpen: OpeningGoldChest
+  goldenChestClose: ClosingGoldChest
+  idleGoldChest: Idle
+  spriteRenderer: {fileID: 2084913590679028496}
+  closedSprite: {fileID: -1476513711, guid: f236c50a7ec8f3b4cb53217789ea98f4, type: 3}
+  openedSprite: {fileID: 617207669, guid: f236c50a7ec8f3b4cb53217789ea98f4, type: 3}
+--- !u!61 &532417266
+BoxCollider2D:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3524574384065166323}
+  m_Enabled: 1
+  m_Density: 1
+  m_Material: {fileID: 0}
+  m_IsTrigger: 0
+  m_UsedByEffector: 0
+  m_UsedByComposite: 0
+  m_Offset: {x: 0, y: 0}
+  m_SpriteTilingProperty:
+    border: {x: 0, y: 0, z: 0, w: 0}
+    pivot: {x: 0.5, y: 0.5}
+    oldSize: {x: 1, y: 1}
+    newSize: {x: 1, y: 1}
+    adaptiveTilingThreshold: 0.5
+    drawMode: 0
+    adaptiveTiling: 0
+  m_AutoTiling: 0
+  serializedVersion: 2
+  m_Size: {x: 1, y: 1}
+  m_EdgeRadius: 0
+--- !u!95 &532417261
+Animator:
+  serializedVersion: 4
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3524574384065166323}
+  m_Enabled: 1
+  m_Avatar: {fileID: 0}
+  m_Controller: {fileID: 9100000, guid: 74461049370202d4da85090bc514ba1f, type: 2}
+  m_CullingMode: 0
+  m_UpdateMode: 0
+  m_ApplyRootMotion: 0
+  m_LinearVelocityBlending: 0
+  m_StabilizeFeet: 0
+  m_WarningMessage: 
+  m_HasTransformHierarchy: 1
+  m_AllowConstantClipSamplingOptimization: 1
+  m_KeepAnimatorControllerStateOnDisable: 0
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/ClosedChest.prefab.meta b/MrBigsock/Assets/Resources/Sprites/Item/ClosedChest.prefab.meta
new file mode 100644
index 0000000000000000000000000000000000000000..93f066ba791426fbfbf93ab29ebdeb659caedac3
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/ClosedChest.prefab.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: fdfefcc62c4bc394e850b15cc3e4db85
+PrefabImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/ClosedDoor.controller b/MrBigsock/Assets/Resources/Sprites/Item/ClosedDoor.controller
new file mode 100644
index 0000000000000000000000000000000000000000..ccfdd5c1a6cbe6c257293ac86b633b909ba56a77
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/ClosedDoor.controller
@@ -0,0 +1,72 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!91 &9100000
+AnimatorController:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: ClosedDoor
+  serializedVersion: 5
+  m_AnimatorParameters: []
+  m_AnimatorLayers:
+  - serializedVersion: 5
+    m_Name: Base Layer
+    m_StateMachine: {fileID: 1435108692897676554}
+    m_Mask: {fileID: 0}
+    m_Motions: []
+    m_Behaviours: []
+    m_BlendingMode: 0
+    m_SyncedLayerIndex: -1
+    m_DefaultWeight: 0
+    m_IKPass: 0
+    m_SyncedLayerAffectsTiming: 0
+    m_Controller: {fileID: 9100000}
+--- !u!1107 &1435108692897676554
+AnimatorStateMachine:
+  serializedVersion: 6
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: Base Layer
+  m_ChildStates:
+  - serializedVersion: 1
+    m_State: {fileID: 8389795886735001894}
+    m_Position: {x: 200, y: 0, z: 0}
+  m_ChildStateMachines: []
+  m_AnyStateTransitions: []
+  m_EntryTransitions: []
+  m_StateMachineTransitions: {}
+  m_StateMachineBehaviours: []
+  m_AnyStatePosition: {x: 50, y: 20, z: 0}
+  m_EntryPosition: {x: 50, y: 120, z: 0}
+  m_ExitPosition: {x: 800, y: 120, z: 0}
+  m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
+  m_DefaultState: {fileID: 8389795886735001894}
+--- !u!1102 &8389795886735001894
+AnimatorState:
+  serializedVersion: 6
+  m_ObjectHideFlags: 1
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: OpeningDoor
+  m_Speed: 1
+  m_CycleOffset: 0
+  m_Transitions: []
+  m_StateMachineBehaviours: []
+  m_Position: {x: 50, y: 50, z: 0}
+  m_IKOnFeet: 0
+  m_WriteDefaultValues: 1
+  m_Mirror: 0
+  m_SpeedParameterActive: 0
+  m_MirrorParameterActive: 0
+  m_CycleOffsetParameterActive: 0
+  m_TimeParameterActive: 0
+  m_Motion: {fileID: 7400000, guid: 55d643fdfce97604587565dfe5114d9b, type: 2}
+  m_Tag: 
+  m_SpeedParameter: 
+  m_MirrorParameter: 
+  m_CycleOffsetParameter: 
+  m_TimeParameter: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/ClosedDoor.controller.meta b/MrBigsock/Assets/Resources/Sprites/Item/ClosedDoor.controller.meta
new file mode 100644
index 0000000000000000000000000000000000000000..13428559fac0b658acd0cb1b7402fef319fab307
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/ClosedDoor.controller.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3e9592659036024429b8d2c20e6bfdbb
+NativeFormatImporter:
+  externalObjects: {}
+  mainObjectFileID: 9100000
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/ClosedDoor.prefab b/MrBigsock/Assets/Resources/Sprites/Item/ClosedDoor.prefab
new file mode 100644
index 0000000000000000000000000000000000000000..88c29bf6b8ca92919c68291a63df67c3d45d9094
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/ClosedDoor.prefab
@@ -0,0 +1,189 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1 &3927126222752442302
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 564010318353551005}
+  - component: {fileID: 4182604374371590764}
+  - component: {fileID: 953694648354412602}
+  - component: {fileID: 2422460862180154357}
+  - component: {fileID: 2894084376395367315}
+  - component: {fileID: 1008853213}
+  m_Layer: 11
+  m_Name: ClosedDoor
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &564010318353551005
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3927126222752442302}
+  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+  m_LocalPosition: {x: -1.74, y: 3.48, z: 0}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_ConstrainProportionsScale: 0
+  m_Children: []
+  m_Father: {fileID: 0}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!212 &4182604374371590764
+SpriteRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3927126222752442302}
+  m_Enabled: 1
+  m_CastShadows: 0
+  m_ReceiveShadows: 0
+  m_DynamicOccludee: 1
+  m_StaticShadowCaster: 0
+  m_MotionVectors: 1
+  m_LightProbeUsage: 1
+  m_ReflectionProbeUsage: 1
+  m_RayTracingMode: 0
+  m_RayTraceProcedural: 0
+  m_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
+  m_StaticBatchInfo:
+    firstSubMesh: 0
+    subMeshCount: 0
+  m_StaticBatchRoot: {fileID: 0}
+  m_ProbeAnchor: {fileID: 0}
+  m_LightProbeVolumeOverride: {fileID: 0}
+  m_ScaleInLightmap: 1
+  m_ReceiveGI: 1
+  m_PreserveUVs: 0
+  m_IgnoreNormalsForChartDetection: 0
+  m_ImportantGI: 0
+  m_StitchLightmapSeams: 1
+  m_SelectedEditorRenderState: 0
+  m_MinimumChartSize: 4
+  m_AutoUVMaxDistance: 0.5
+  m_AutoUVMaxAngle: 89
+  m_LightmapParameters: {fileID: 0}
+  m_SortingLayerID: 0
+  m_SortingLayer: 0
+  m_SortingOrder: 1
+  m_Sprite: {fileID: 1340238494, guid: 825e3442c4ac3144390c4c276366629c, type: 3}
+  m_Color: {r: 1, g: 1, b: 1, a: 1}
+  m_FlipX: 0
+  m_FlipY: 0
+  m_DrawMode: 0
+  m_Size: {x: 2, y: 2}
+  m_AdaptiveModeThreshold: 0.5
+  m_SpriteTileMode: 0
+  m_WasSpriteAssigned: 1
+  m_MaskInteraction: 0
+  m_SpriteSortPoint: 0
+--- !u!114 &953694648354412602
+MonoBehaviour:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3927126222752442302}
+  m_Enabled: 1
+  m_EditorHideFlags: 0
+  m_Script: {fileID: 11500000, guid: e8869e38d56c69345a0b0f0eee8fc9bb, type: 3}
+  m_Name: 
+  m_EditorClassIdentifier: 
+  _prompt: 
+  spriteRenderer: {fileID: 4182604374371590764}
+  newSprite: {fileID: 1308953881, guid: 825e3442c4ac3144390c4c276366629c, type: 3}
+--- !u!1839735485 &2422460862180154357
+Tilemap:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3927126222752442302}
+  m_Enabled: 1
+  m_Tiles: {}
+  m_AnimatedTiles: {}
+  m_TileAssetArray: []
+  m_TileSpriteArray: []
+  m_TileMatrixArray: []
+  m_TileColorArray: []
+  m_TileObjectToInstantiateArray: []
+  m_AnimationFrameRate: 1
+  m_Color: {r: 1, g: 1, b: 1, a: 1}
+  m_Origin: {x: 0, y: 0, z: 0}
+  m_Size: {x: 0, y: 0, z: 1}
+  m_TileAnchor: {x: 0.5, y: 0.5, z: 0}
+  m_TileOrientation: 0
+  m_TileOrientationMatrix:
+    e00: 1
+    e01: 0
+    e02: 0
+    e03: 0
+    e10: 0
+    e11: 1
+    e12: 0
+    e13: 0
+    e20: 0
+    e21: 0
+    e22: 1
+    e23: 0
+    e30: 0
+    e31: 0
+    e32: 0
+    e33: 1
+--- !u!61 &2894084376395367315
+BoxCollider2D:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3927126222752442302}
+  m_Enabled: 1
+  m_Density: 1
+  m_Material: {fileID: 0}
+  m_IsTrigger: 0
+  m_UsedByEffector: 0
+  m_UsedByComposite: 0
+  m_Offset: {x: 0, y: 0}
+  m_SpriteTilingProperty:
+    border: {x: 0, y: 0, z: 0, w: 0}
+    pivot: {x: 0.5, y: 0.5}
+    oldSize: {x: 2, y: 2}
+    newSize: {x: 2, y: 2}
+    adaptiveTilingThreshold: 0.5
+    drawMode: 0
+    adaptiveTiling: 0
+  m_AutoTiling: 0
+  serializedVersion: 2
+  m_Size: {x: 2, y: 2}
+  m_EdgeRadius: 0
+--- !u!95 &1008853213
+Animator:
+  serializedVersion: 4
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 3927126222752442302}
+  m_Enabled: 1
+  m_Avatar: {fileID: 0}
+  m_Controller: {fileID: 9100000, guid: 3e9592659036024429b8d2c20e6bfdbb, type: 2}
+  m_CullingMode: 0
+  m_UpdateMode: 0
+  m_ApplyRootMotion: 0
+  m_LinearVelocityBlending: 0
+  m_StabilizeFeet: 0
+  m_WarningMessage: 
+  m_HasTransformHierarchy: 1
+  m_AllowConstantClipSamplingOptimization: 1
+  m_KeepAnimatorControllerStateOnDisable: 0
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/ClosedDoor.prefab.meta b/MrBigsock/Assets/Resources/Sprites/Item/ClosedDoor.prefab.meta
new file mode 100644
index 0000000000000000000000000000000000000000..0e3a91d1c9507420c529f3061b034c4d202a33b3
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/ClosedDoor.prefab.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: e2f80767fa7906a4cabb85c3d953f245
+PrefabImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/OpenDoor.prefab b/MrBigsock/Assets/Resources/Sprites/Item/OpenDoor.prefab
new file mode 100644
index 0000000000000000000000000000000000000000..cfc0f9e53c3f7f4a4709efdc4e8a41de3f8f7c95
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/OpenDoor.prefab
@@ -0,0 +1,86 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1 &1148753951976761604
+GameObject:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  serializedVersion: 6
+  m_Component:
+  - component: {fileID: 5641892592071645301}
+  - component: {fileID: 2714775143766225572}
+  m_Layer: 0
+  m_Name: OpenDoor
+  m_TagString: Untagged
+  m_Icon: {fileID: 0}
+  m_NavMeshLayer: 0
+  m_StaticEditorFlags: 0
+  m_IsActive: 1
+--- !u!4 &5641892592071645301
+Transform:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1148753951976761604}
+  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+  m_LocalPosition: {x: 1.1275604, y: 3.452331, z: 0}
+  m_LocalScale: {x: 1, y: 1, z: 1}
+  m_ConstrainProportionsScale: 0
+  m_Children: []
+  m_Father: {fileID: 0}
+  m_RootOrder: 0
+  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!212 &2714775143766225572
+SpriteRenderer:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_GameObject: {fileID: 1148753951976761604}
+  m_Enabled: 1
+  m_CastShadows: 0
+  m_ReceiveShadows: 0
+  m_DynamicOccludee: 1
+  m_StaticShadowCaster: 0
+  m_MotionVectors: 1
+  m_LightProbeUsage: 1
+  m_ReflectionProbeUsage: 1
+  m_RayTracingMode: 0
+  m_RayTraceProcedural: 0
+  m_RenderingLayerMask: 1
+  m_RendererPriority: 0
+  m_Materials:
+  - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
+  m_StaticBatchInfo:
+    firstSubMesh: 0
+    subMeshCount: 0
+  m_StaticBatchRoot: {fileID: 0}
+  m_ProbeAnchor: {fileID: 0}
+  m_LightProbeVolumeOverride: {fileID: 0}
+  m_ScaleInLightmap: 1
+  m_ReceiveGI: 1
+  m_PreserveUVs: 0
+  m_IgnoreNormalsForChartDetection: 0
+  m_ImportantGI: 0
+  m_StitchLightmapSeams: 1
+  m_SelectedEditorRenderState: 0
+  m_MinimumChartSize: 4
+  m_AutoUVMaxDistance: 0.5
+  m_AutoUVMaxAngle: 89
+  m_LightmapParameters: {fileID: 0}
+  m_SortingLayerID: 0
+  m_SortingLayer: 0
+  m_SortingOrder: 0
+  m_Sprite: {fileID: 1308953881, guid: 825e3442c4ac3144390c4c276366629c, type: 3}
+  m_Color: {r: 1, g: 1, b: 1, a: 1}
+  m_FlipX: 0
+  m_FlipY: 0
+  m_DrawMode: 0
+  m_Size: {x: 2, y: 2}
+  m_AdaptiveModeThreshold: 0.5
+  m_SpriteTileMode: 0
+  m_WasSpriteAssigned: 1
+  m_MaskInteraction: 0
+  m_SpriteSortPoint: 0
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/OpenDoor.prefab.meta b/MrBigsock/Assets/Resources/Sprites/Item/OpenDoor.prefab.meta
new file mode 100644
index 0000000000000000000000000000000000000000..58ab711224256719307c3c35bf41cfcba3372aba
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/OpenDoor.prefab.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: e0957b066e8238b4e866ee08f22d06c3
+PrefabImporter:
+  externalObjects: {}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/OpeningGoldChest.anim b/MrBigsock/Assets/Resources/Sprites/Item/OpeningGoldChest.anim
new file mode 100644
index 0000000000000000000000000000000000000000..a8a65bfb087d5e0afd0152b6fb9652b8de5103aa
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/OpeningGoldChest.anim
@@ -0,0 +1,77 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!74 &7400000
+AnimationClip:
+  m_ObjectHideFlags: 0
+  m_CorrespondingSourceObject: {fileID: 0}
+  m_PrefabInstance: {fileID: 0}
+  m_PrefabAsset: {fileID: 0}
+  m_Name: OpeningGoldChest
+  serializedVersion: 6
+  m_Legacy: 0
+  m_Compressed: 0
+  m_UseHighQualityCurve: 1
+  m_RotationCurves: []
+  m_CompressedRotationCurves: []
+  m_EulerCurves: []
+  m_PositionCurves: []
+  m_ScaleCurves: []
+  m_FloatCurves: []
+  m_PPtrCurves:
+  - curve:
+    - time: 0
+      value: {fileID: -1476513711, guid: f236c50a7ec8f3b4cb53217789ea98f4, type: 3}
+    - time: 0.25
+      value: {fileID: -239743868, guid: f236c50a7ec8f3b4cb53217789ea98f4, type: 3}
+    - time: 0.5
+      value: {fileID: 617207669, guid: f236c50a7ec8f3b4cb53217789ea98f4, type: 3}
+    - time: 0.75
+      value: {fileID: 617207669, guid: f236c50a7ec8f3b4cb53217789ea98f4, type: 3}
+    attribute: m_Sprite
+    path: 
+    classID: 212
+    script: {fileID: 0}
+  m_SampleRate: 60
+  m_WrapMode: 0
+  m_Bounds:
+    m_Center: {x: 0, y: 0, z: 0}
+    m_Extent: {x: 0, y: 0, z: 0}
+  m_ClipBindingConstant:
+    genericBindings:
+    - serializedVersion: 2
+      path: 0
+      attribute: 0
+      script: {fileID: 0}
+      typeID: 212
+      customType: 23
+      isPPtrCurve: 1
+    pptrCurveMapping:
+    - {fileID: -1476513711, guid: f236c50a7ec8f3b4cb53217789ea98f4, type: 3}
+    - {fileID: -239743868, guid: f236c50a7ec8f3b4cb53217789ea98f4, type: 3}
+    - {fileID: 617207669, guid: f236c50a7ec8f3b4cb53217789ea98f4, type: 3}
+    - {fileID: 617207669, guid: f236c50a7ec8f3b4cb53217789ea98f4, type: 3}
+  m_AnimationClipSettings:
+    serializedVersion: 2
+    m_AdditiveReferencePoseClip: {fileID: 0}
+    m_AdditiveReferencePoseTime: 0
+    m_StartTime: 0
+    m_StopTime: 0.76666665
+    m_OrientationOffsetY: 0
+    m_Level: 0
+    m_CycleOffset: 0
+    m_HasAdditiveReferencePose: 0
+    m_LoopTime: 0
+    m_LoopBlend: 0
+    m_LoopBlendOrientation: 0
+    m_LoopBlendPositionY: 0
+    m_LoopBlendPositionXZ: 0
+    m_KeepOriginalOrientation: 0
+    m_KeepOriginalPositionY: 1
+    m_KeepOriginalPositionXZ: 0
+    m_HeightFromFeet: 0
+    m_Mirror: 0
+  m_EditorCurves: []
+  m_EulerEditorCurves: []
+  m_HasGenericRootTransform: 0
+  m_HasMotionFloatCurves: 0
+  m_Events: []
diff --git a/MrBigsock/Assets/Resources/Sprites/Item/OpeningGoldChest.anim.meta b/MrBigsock/Assets/Resources/Sprites/Item/OpeningGoldChest.anim.meta
new file mode 100644
index 0000000000000000000000000000000000000000..bba1e869f36ab3b153bac56de5c9e65167f1af88
--- /dev/null
+++ b/MrBigsock/Assets/Resources/Sprites/Item/OpeningGoldChest.anim.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 7a666638bfe6cff46a60cb7498be4106
+NativeFormatImporter:
+  externalObjects: {}
+  mainObjectFileID: 7400000
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/MrBigsock/Assets/Sprites/Item/chest.png b/MrBigsock/Assets/Resources/Sprites/Item/chest.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/chest.png
rename to MrBigsock/Assets/Resources/Sprites/Item/chest.png
diff --git a/MrBigsock/Assets/Sprites/Item/chest.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/chest.png.meta
similarity index 97%
rename from MrBigsock/Assets/Sprites/Item/chest.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Item/chest.png.meta
index 1c8cf8fd4585b0b028dc92f87112c135487fdf0b..6d23ad75ac11cfb92feb329d5cc3e03972076070 100644
--- a/MrBigsock/Assets/Sprites/Item/chest.png.meta
+++ b/MrBigsock/Assets/Resources/Sprites/Item/chest.png.meta
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites:
diff --git a/MrBigsock/Assets/Sprites/Item/tilesetNice.png b/MrBigsock/Assets/Resources/Sprites/Item/tilesetNice.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Item/tilesetNice.png
rename to MrBigsock/Assets/Resources/Sprites/Item/tilesetNice.png
diff --git a/MrBigsock/Assets/Sprites/Item/tilesetNice.png.meta b/MrBigsock/Assets/Resources/Sprites/Item/tilesetNice.png.meta
similarity index 97%
rename from MrBigsock/Assets/Sprites/Item/tilesetNice.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Item/tilesetNice.png.meta
index 4e84a92a0fb0c3f713af0882727ccd86061fe0bf..bc4bab92eadfb0047e2e7c325d6feee7f3123c59 100644
--- a/MrBigsock/Assets/Sprites/Item/tilesetNice.png.meta
+++ b/MrBigsock/Assets/Resources/Sprites/Item/tilesetNice.png.meta
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites:
diff --git a/MrBigsock/Assets/Sprites/Player.meta b/MrBigsock/Assets/Resources/Sprites/Player.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player.meta
rename to MrBigsock/Assets/Resources/Sprites/Player.meta
diff --git a/MrBigsock/Assets/Sprites/Player/.gitkeep b/MrBigsock/Assets/Resources/Sprites/Player/.gitkeep
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/.gitkeep
rename to MrBigsock/Assets/Resources/Sprites/Player/.gitkeep
diff --git a/MrBigsock/Assets/Sprites/Player/Animations.meta b/MrBigsock/Assets/Resources/Sprites/Player/Animations.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/Animations.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/Animations.meta
diff --git a/MrBigsock/Assets/Sprites/Player/Animations/.gitkeep b/MrBigsock/Assets/Resources/Sprites/Player/Animations/.gitkeep
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/Animations/.gitkeep
rename to MrBigsock/Assets/Resources/Sprites/Player/Animations/.gitkeep
diff --git a/MrBigsock/Assets/Sprites/Player/Animations/idle.meta b/MrBigsock/Assets/Resources/Sprites/Player/Animations/idle.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/Animations/idle.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/Animations/idle.meta
diff --git a/MrBigsock/Assets/Sprites/Player/Animations/idle/BigSock.controller b/MrBigsock/Assets/Resources/Sprites/Player/Animations/idle/BigSock.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/Animations/idle/BigSock.controller
rename to MrBigsock/Assets/Resources/Sprites/Player/Animations/idle/BigSock.controller
diff --git a/MrBigsock/Assets/Sprites/Player/Animations/idle/BigSock.controller.meta b/MrBigsock/Assets/Resources/Sprites/Player/Animations/idle/BigSock.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/Animations/idle/BigSock.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/Animations/idle/BigSock.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Player/Animations/idle/BigSock_Idle_Right.png b/MrBigsock/Assets/Resources/Sprites/Player/Animations/idle/BigSock_Idle_Right.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/Animations/idle/BigSock_Idle_Right.png
rename to MrBigsock/Assets/Resources/Sprites/Player/Animations/idle/BigSock_Idle_Right.png
diff --git a/MrBigsock/Assets/Sprites/Player/Animations/idle/BigSock_Idle_Right.png.meta b/MrBigsock/Assets/Resources/Sprites/Player/Animations/idle/BigSock_Idle_Right.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/Animations/idle/BigSock_Idle_Right.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/Animations/idle/BigSock_Idle_Right.png.meta
diff --git a/MrBigsock/Assets/Sprites/Player/Animations/idle/BigSock_idle.anim b/MrBigsock/Assets/Resources/Sprites/Player/Animations/idle/BigSock_idle.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/Animations/idle/BigSock_idle.anim
rename to MrBigsock/Assets/Resources/Sprites/Player/Animations/idle/BigSock_idle.anim
diff --git a/MrBigsock/Assets/Sprites/Player/Animations/idle/BigSock_idle.anim.meta b/MrBigsock/Assets/Resources/Sprites/Player/Animations/idle/BigSock_idle.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/Animations/idle/BigSock_idle.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/Animations/idle/BigSock_idle.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Player/Animations/walk.meta b/MrBigsock/Assets/Resources/Sprites/Player/Animations/walk.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/Animations/walk.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/Animations/walk.meta
diff --git a/MrBigsock/Assets/Sprites/Player/Animations/walk/BigSock_Walk_Right.png b/MrBigsock/Assets/Resources/Sprites/Player/Animations/walk/BigSock_Walk_Right.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/Animations/walk/BigSock_Walk_Right.png
rename to MrBigsock/Assets/Resources/Sprites/Player/Animations/walk/BigSock_Walk_Right.png
diff --git a/MrBigsock/Assets/Sprites/Player/Animations/walk/BigSock_Walk_Right.png.meta b/MrBigsock/Assets/Resources/Sprites/Player/Animations/walk/BigSock_Walk_Right.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/Animations/walk/BigSock_Walk_Right.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/Animations/walk/BigSock_Walk_Right.png.meta
diff --git a/MrBigsock/Assets/Sprites/Player/Animations/walk/Bigsock_walk.anim b/MrBigsock/Assets/Resources/Sprites/Player/Animations/walk/Bigsock_walk.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/Animations/walk/Bigsock_walk.anim
rename to MrBigsock/Assets/Resources/Sprites/Player/Animations/walk/Bigsock_walk.anim
diff --git a/MrBigsock/Assets/Sprites/Player/Animations/walk/Bigsock_walk.anim.meta b/MrBigsock/Assets/Resources/Sprites/Player/Animations/walk/Bigsock_walk.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/Animations/walk/Bigsock_walk.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/Animations/walk/Bigsock_walk.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Player/BigSock.meta b/MrBigsock/Assets/Resources/Sprites/Player/BigSock.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/BigSock.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/BigSock.meta
diff --git a/MrBigsock/Assets/Sprites/Player/BigSock/PlayerInputActions.inputactions b/MrBigsock/Assets/Resources/Sprites/Player/BigSock/PlayerInputActions.inputactions
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/BigSock/PlayerInputActions.inputactions
rename to MrBigsock/Assets/Resources/Sprites/Player/BigSock/PlayerInputActions.inputactions
diff --git a/MrBigsock/Assets/Sprites/Player/BigSock/PlayerInputActions.inputactions.meta b/MrBigsock/Assets/Resources/Sprites/Player/BigSock/PlayerInputActions.inputactions.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/BigSock/PlayerInputActions.inputactions.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/BigSock/PlayerInputActions.inputactions.meta
diff --git a/MrBigsock/Assets/Sprites/Player/BigSock/attackBigSock.anim b/MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSock.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/BigSock/attackBigSock.anim
rename to MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSock.anim
diff --git a/MrBigsock/Assets/Sprites/Player/BigSock/attackBigSock.anim.meta b/MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSock.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/BigSock/attackBigSock.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSock.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Player/BigSock/attackBigSock.png b/MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSock.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/BigSock/attackBigSock.png
rename to MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSock.png
diff --git a/MrBigsock/Assets/Sprites/Player/BigSock/attackBigSock.png.meta b/MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSock.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/BigSock/attackBigSock.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSock.png.meta
diff --git a/MrBigsock/Assets/Sprites/Player/BigSock/attackBigSockBig.anim b/MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSockBig.anim
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/BigSock/attackBigSockBig.anim
rename to MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSockBig.anim
diff --git a/MrBigsock/Assets/Sprites/Player/BigSock/attackBigSockBig.anim.meta b/MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSockBig.anim.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/BigSock/attackBigSockBig.anim.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSockBig.anim.meta
diff --git a/MrBigsock/Assets/Sprites/Player/BigSock/attackBigSockBig.controller b/MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSockBig.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/BigSock/attackBigSockBig.controller
rename to MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSockBig.controller
diff --git a/MrBigsock/Assets/Sprites/Player/BigSock/attackBigSockBig.controller.meta b/MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSockBig.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/BigSock/attackBigSockBig.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSockBig.controller.meta
diff --git a/MrBigsock/Assets/Sprites/Player/BigSock/attackBigSockBig.png b/MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSockBig.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/BigSock/attackBigSockBig.png
rename to MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSockBig.png
diff --git a/MrBigsock/Assets/Sprites/Player/BigSock/attackBigSockBig.png.meta b/MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSockBig.png.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/BigSock/attackBigSockBig.png.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSockBig.png.meta
diff --git a/MrBigsock/Assets/Sprites/Player/BigSock/attackBigSock_0.controller b/MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSock_0.controller
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/BigSock/attackBigSock_0.controller
rename to MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSock_0.controller
diff --git a/MrBigsock/Assets/Sprites/Player/BigSock/attackBigSock_0.controller.meta b/MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSock_0.controller.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/Player/BigSock/attackBigSock_0.controller.meta
rename to MrBigsock/Assets/Resources/Sprites/Player/BigSock/attackBigSock_0.controller.meta
diff --git a/MrBigsock/Assets/Sprites/UI.meta b/MrBigsock/Assets/Resources/Sprites/UI.meta
similarity index 100%
rename from MrBigsock/Assets/Sprites/UI.meta
rename to MrBigsock/Assets/Resources/Sprites/UI.meta
diff --git a/MrBigsock/Assets/Sprites/UI/GUI.png b/MrBigsock/Assets/Resources/Sprites/UI/GUI.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/UI/GUI.png
rename to MrBigsock/Assets/Resources/Sprites/UI/GUI.png
diff --git a/MrBigsock/Assets/Sprites/UI/GUI.png.meta b/MrBigsock/Assets/Resources/Sprites/UI/GUI.png.meta
similarity index 99%
rename from MrBigsock/Assets/Sprites/UI/GUI.png.meta
rename to MrBigsock/Assets/Resources/Sprites/UI/GUI.png.meta
index b6367d266dca2710f256d39fe2065242fe46b2bd..47dfc3c9c4a3d464cd7441d29d795041901674f1 100644
--- a/MrBigsock/Assets/Sprites/UI/GUI.png.meta
+++ b/MrBigsock/Assets/Resources/Sprites/UI/GUI.png.meta
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites:
diff --git a/MrBigsock/Assets/Sprites/UI/buttons.png b/MrBigsock/Assets/Resources/Sprites/UI/buttons.png
similarity index 100%
rename from MrBigsock/Assets/Sprites/UI/buttons.png
rename to MrBigsock/Assets/Resources/Sprites/UI/buttons.png
diff --git a/MrBigsock/Assets/Sprites/UI/buttons.png.meta b/MrBigsock/Assets/Resources/Sprites/UI/buttons.png.meta
similarity index 97%
rename from MrBigsock/Assets/Sprites/UI/buttons.png.meta
rename to MrBigsock/Assets/Resources/Sprites/UI/buttons.png.meta
index 89d35a46598d4701cf307ca681e43d5ca680c493..266134de858469721d99aa8cf239f4ae1088a855 100644
--- a/MrBigsock/Assets/Sprites/UI/buttons.png.meta
+++ b/MrBigsock/Assets/Resources/Sprites/UI/buttons.png.meta
@@ -101,6 +101,18 @@ TextureImporter:
     overridden: 0
     androidETC2FallbackOverride: 0
     forceMaximumCompressionQuality_BC6H_BC7: 0
+  - serializedVersion: 3
+    buildTarget: WebGL
+    maxTextureSize: 2048
+    resizeAlgorithm: 0
+    textureFormat: -1
+    textureCompression: 1
+    compressionQuality: 50
+    crunchedCompression: 0
+    allowsAlphaSplitting: 0
+    overridden: 0
+    androidETC2FallbackOverride: 0
+    forceMaximumCompressionQuality_BC6H_BC7: 0
   spriteSheet:
     serializedVersion: 2
     sprites:
diff --git a/MrBigsock/Assets/sound.meta b/MrBigsock/Assets/Resources/sound.meta
similarity index 100%
rename from MrBigsock/Assets/sound.meta
rename to MrBigsock/Assets/Resources/sound.meta
diff --git a/MrBigsock/Assets/sound/Eggy Toast - The Magician.mp3 b/MrBigsock/Assets/Resources/sound/Eggy Toast - The Magician.mp3
similarity index 100%
rename from MrBigsock/Assets/sound/Eggy Toast - The Magician.mp3
rename to MrBigsock/Assets/Resources/sound/Eggy Toast - The Magician.mp3
diff --git a/MrBigsock/Assets/sound/Eggy Toast - The Magician.mp3.meta b/MrBigsock/Assets/Resources/sound/Eggy Toast - The Magician.mp3.meta
similarity index 100%
rename from MrBigsock/Assets/sound/Eggy Toast - The Magician.mp3.meta
rename to MrBigsock/Assets/Resources/sound/Eggy Toast - The Magician.mp3.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Alien/sfx_deathscream_alien6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Android/sfx_deathscream_android8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human12.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human12.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human12.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human12.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human12.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human12.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human12.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human12.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human13.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human13.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human13.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human13.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human13.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human13.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human13.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human13.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human14.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human14.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human14.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human14.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human14.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human14.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human14.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human14.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Human/sfx_deathscream_human9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Death Screams/Robot/sfx_deathscream_robot4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Clusters/sfx_exp_cluster9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Double/sfx_exp_double3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Long/sfx_exp_long6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium12.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium12.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium12.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium12.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium12.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium12.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium12.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium12.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium13.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium13.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium13.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium13.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium13.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium13.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium13.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium13.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Medium Length/sfx_exp_medium9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Odd/sfx_exp_odd7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard12.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard12.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard12.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard12.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard12.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard12.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard12.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard12.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard13.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard13.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard13.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard13.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard13.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard13.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard13.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard13.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard14.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard14.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard14.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard14.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard14.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard14.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard14.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard14.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard15.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard15.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard15.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard15.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard15.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard15.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard15.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard15.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard16.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard16.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard16.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard16.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard16.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard16.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard16.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard16.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard17.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard17.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard17.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard17.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard17.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard17.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard17.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard17.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_hard9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft12.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft12.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft12.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft12.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft12.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft12.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft12.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft12.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Short/sfx_exp_short_soft9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_hard9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Shortest/sfx_exp_shortest_soft9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Explosions/Various/sfx_exp_various7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Alarms/sfx_alarm_loop8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Alarms/Low health Alarms/sfx_lowhealth_alarmloop7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button12.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button12.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button12.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button12.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button12.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button12.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button12.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button12.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button13.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button13.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button13.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button13.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button13.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button13.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button13.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button13.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button14.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button14.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button14.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button14.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button14.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button14.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button14.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button14.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Buttons/sfx_sounds_button9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_cluster9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_double7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Coins/sfx_coin_single6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Fanfares/sfx_sounds_fanfare3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/High Pitched Sounds/sfx_sounds_high7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact12.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact12.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact12.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact12.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact12.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact12.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact12.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact12.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact13.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact13.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact13.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact13.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact13.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact13.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact13.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact13.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact14.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact14.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact14.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact14.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact14.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact14.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact14.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact14.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact15.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact15.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact15.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact15.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact15.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact15.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact15.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact15.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Impacts/sfx_sounds_impact9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction12.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction12.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction12.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction12.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction12.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction12.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction12.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction12.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction13.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction13.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction13.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction13.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction13.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction13.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction13.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction13.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction14.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction14.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction14.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction14.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction14.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction14.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction14.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction14.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction15.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction15.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction15.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction15.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction15.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction15.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction15.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction15.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction16.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction16.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction16.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction16.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction16.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction16.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction16.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction16.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction17.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction17.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction17.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction17.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction17.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction17.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction17.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction17.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction18.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction18.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction18.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction18.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction18.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction18.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction18.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction18.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction19.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction19.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction19.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction19.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction19.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction19.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction19.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction19.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction20.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction20.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction20.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction20.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction20.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction20.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction20.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction20.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction21.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction21.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction21.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction21.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction21.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction21.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction21.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction21.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction22.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction22.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction22.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction22.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction22.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction22.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction22.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction22.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction23.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction23.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction23.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction23.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction23.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction23.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction23.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction23.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction24.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction24.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction24.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction24.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction24.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction24.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction24.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction24.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction25.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction25.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction25.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction25.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction25.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction25.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction25.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction25.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction26.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction26.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction26.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction26.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction26.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction26.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction26.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction26.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Interactions/sfx_sounds_interaction9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_move5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Menu Sounds/sfx_menu_select5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_damage3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error12.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error12.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error12.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error12.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error12.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error12.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error12.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error12.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error13.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error13.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error13.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error13.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error13.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error13.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error13.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error13.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error14.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error14.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error14.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error14.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error14.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error14.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error14.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error14.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error15.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error15.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error15.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error15.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error15.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error15.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error15.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error15.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_error9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Negative Sounds/sfx_sounds_negative2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Neutral Sounds/sfx_sound_neutral9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_in.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_in.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_in.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_in.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_in.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_in.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_in.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_in.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_out.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_out.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_out.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_out.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_out.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_out.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_out.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause1_out.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_in.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_in.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_in.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_in.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_in.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_in.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_in.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_in.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_out.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_out.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_out.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_out.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_out.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_out.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_out.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause2_out.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_in.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_in.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_in.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_in.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_in.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_in.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_in.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_in.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_out.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_out.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_out.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_out.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_out.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_out.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_out.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause3_out.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_in.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_in.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_in.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_in.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_in.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_in.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_in.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_in.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_out.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_out.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_out.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_out.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_out.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_out.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_out.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause4_out.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_in.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_in.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_in.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_in.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_in.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_in.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_in.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_in.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_out.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_out.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_out.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_out.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_out.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_out.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_out.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause5_out.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_in.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_in.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_in.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_in.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_in.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_in.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_in.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_in.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_out.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_out.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_out.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_out.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_out.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_out.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_out.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause6_out.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_in.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_in.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_in.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_in.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_in.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_in.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_in.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_in.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_out.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_out.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_out.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_out.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_out.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_out.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_out.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Pause Sounds/sfx_sounds_pause7_out.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup12.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup12.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup12.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup12.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup12.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup12.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup12.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup12.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup13.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup13.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup13.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup13.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup13.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup13.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup13.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup13.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup14.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup14.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup14.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup14.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup14.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup14.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup14.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup14.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup15.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup15.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup15.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup15.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup15.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup15.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup15.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup15.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup16.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup16.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup16.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup16.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup16.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup16.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup16.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup16.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup17.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup17.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup17.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup17.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup17.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup17.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup17.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup17.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup18.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup18.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup18.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup18.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup18.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup18.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup18.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup18.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Positive Sounds/sfx_sounds_powerup9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Bleeps/sfx_sounds_Blip9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Simple Damage Sounds/sfx_damage_hit9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_bling.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_bling.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_bling.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_bling.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_bling.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_bling.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_bling.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_bling.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_depressurizing.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_depressurizing.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_depressurizing.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_depressurizing.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_depressurizing.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_depressurizing.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_depressurizing.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_depressurizing.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_mechanicalnoise6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_nagger2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_noise.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_noise.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_noise.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_noise.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_noise.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_noise.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_noise.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_noise.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_poweron.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_poweron.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_poweron.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_poweron.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_poweron.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_poweron.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_poweron.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_poweron.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_refereewhistle.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_refereewhistle.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_refereewhistle.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_refereewhistle.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_refereewhistle.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_refereewhistle.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_refereewhistle.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_refereewhistle.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_shutdown2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_vaporizing.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_vaporizing.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_vaporizing.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_vaporizing.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_vaporizing.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_vaporizing.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_vaporizing.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/General Sounds/Weird Sounds/sfx_sound_vaporizing.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/INFO.txt b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/INFO.txt
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/INFO.txt
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/INFO.txt
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/INFO.txt.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/INFO.txt.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/INFO.txt.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/INFO.txt.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1a.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1a.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1a.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1a.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1a.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1a.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1a.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1a.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1b.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1b.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1b.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1b.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1b.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1b.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1b.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1b.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1loop.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1loop.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1loop.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1loop.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1loop.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1loop.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1loop.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder1loop.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2a.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2a.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2a.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2a.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2a.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2a.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2a.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2a.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2b.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2b.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2b.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2b.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2b.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2b.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2b.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2b.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2loop.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2loop.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2loop.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2loop.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2loop.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2loop.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2loop.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder2loop.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3a.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3a.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3a.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3a.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3a.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3a.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3a.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3a.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3b.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3b.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3b.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3b.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3b.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3b.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3b.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3b.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3loop.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3loop.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3loop.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3loop.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3loop.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3loop.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3loop.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder3loop.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4a.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4a.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4a.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4a.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4a.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4a.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4a.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4a.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4b.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4b.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4b.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4b.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4b.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4b.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4b.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4b.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4loop.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4loop.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4loop.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4loop.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4loop.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4loop.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4loop.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder4loop.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5a.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5a.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5a.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5a.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5a.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5a.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5a.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5a.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5b.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5b.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5b.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5b.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5b.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5b.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5b.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5b.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5loop.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5loop.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5loop.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5loop.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5loop.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5loop.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5loop.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder5loop.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6a.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6a.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6a.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6a.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6a.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6a.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6a.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6a.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6b.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6b.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6b.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6b.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6b.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6b.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6b.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6b.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6loop.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6loop.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6loop.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6loop.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6loop.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6loop.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6loop.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Ladder/sfx_movement_ladder6loop.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1a.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1a.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1a.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1a.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1a.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1a.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1a.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1a.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1b.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1b.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1b.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1b.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1b.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1b.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1b.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1b.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1loop.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1loop.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1loop.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1loop.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1loop.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1loop.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1loop.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs1loop.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2a.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2a.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2a.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2a.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2a.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2a.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2a.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2a.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2b.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2b.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2b.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2b.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2b.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2b.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2b.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2b.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2loop.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2loop.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2loop.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2loop.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2loop.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2loop.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2loop.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs2loop.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3a.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3a.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3a.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3a.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3a.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3a.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3a.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3a.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3b.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3b.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3b.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3b.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3b.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3b.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3b.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3b.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3loop.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3loop.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3loop.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3loop.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3loop.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3loop.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3loop.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs3loop.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4a.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4a.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4a.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4a.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4a.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4a.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4a.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4a.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4b.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4b.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4b.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4b.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4b.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4b.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4b.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4b.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4loop.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4loop.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4loop.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4loop.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4loop.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4loop.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4loop.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs4loop.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5a.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5a.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5a.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5a.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5a.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5a.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5a.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5a.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5b.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5b.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5b.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5b.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5b.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5b.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5b.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5b.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5loop.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5loop.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5loop.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5loop.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5loop.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5loop.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5loop.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs5loop.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6a.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6a.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6a.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6a.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6a.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6a.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6a.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6a.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6b.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6b.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6b.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6b.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6b.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6b.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6b.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6b.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6loop.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6loop.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6loop.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6loop.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6loop.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6loop.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6loop.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Climbing Stairs/sfx_movement_stairs6loop.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling12.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling12.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling12.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling12.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling12.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling12.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling12.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling12.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Falling Sounds/sfx_sounds_falling9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1a.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1a.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1a.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1a.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1a.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1a.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1a.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1a.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1b.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1b.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1b.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1b.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1b.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1b.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1b.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps1b.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footsteps5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_fast.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_fast.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_fast.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_fast.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_fast.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_fast.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_fast.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_fast.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_slow.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_slow.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_slow.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_slow.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_slow.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_slow.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_slow.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop3_slow.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_fast.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_fast.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_fast.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_fast.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_fast.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_fast.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_fast.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_fast.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_slow.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_slow.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_slow.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_slow.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_slow.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_slow.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_slow.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Footsteps/sfx_movement_footstepsloop4_slow.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10_landing.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10_landing.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10_landing.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10_landing.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10_landing.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10_landing.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10_landing.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump10_landing.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11_landing.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11_landing.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11_landing.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11_landing.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11_landing.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11_landing.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11_landing.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump11_landing.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12_landing.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12_landing.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12_landing.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12_landing.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12_landing.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12_landing.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12_landing.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump12_landing.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13_landing.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13_landing.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13_landing.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13_landing.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13_landing.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13_landing.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13_landing.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump13_landing.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14_landing.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14_landing.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14_landing.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14_landing.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14_landing.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14_landing.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14_landing.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump14_landing.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15_landing.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15_landing.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15_landing.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15_landing.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15_landing.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15_landing.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15_landing.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump15_landing.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16_landing.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16_landing.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16_landing.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16_landing.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16_landing.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16_landing.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16_landing.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump16_landing.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17_landing.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17_landing.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17_landing.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17_landing.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17_landing.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17_landing.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17_landing.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump17_landing.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18_landing.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18_landing.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18_landing.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18_landing.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18_landing.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18_landing.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18_landing.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump18_landing.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19_landing.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19_landing.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19_landing.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19_landing.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19_landing.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19_landing.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19_landing.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump19_landing.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump20.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump20.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump20.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump20.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump20.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump20.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump20.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump20.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9_landing.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9_landing.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9_landing.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9_landing.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9_landing.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9_landing.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9_landing.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Jumping and Landing/sfx_movement_jump9_landing.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Opening Doors/sfx_movement_dooropen4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Portals and Transitions/sfx_movement_portal6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_breaks.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_breaks.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_breaks.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_breaks.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_breaks.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_breaks.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_breaks.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_breaks.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_carloop2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_engineloop.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_engineloop.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_engineloop.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_engineloop.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_engineloop.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_engineloop.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_engineloop.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_engineloop.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_helicopterloop4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_plainloop.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_plainloop.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_plainloop.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_plainloop.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_plainloop.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_plainloop.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_plainloop.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Movement/Vehicles/sfx_vehicle_plainloop.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Cannon/sfx_wpn_cannon6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_grenadewhistle2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_missilelaunch.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_missilelaunch.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_missilelaunch.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_missilelaunch.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_missilelaunch.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_missilelaunch.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_missilelaunch.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Grenade Whistles/sfx_wpn_missilelaunch.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser 10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser 10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser 10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser 10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser 10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser 10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser 10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser 10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser12.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser12.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser12.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser12.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser12.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser12.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser12.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser12.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Lasers/sfx_wpn_laser9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Machinegun/sfx_wpn_machinegun_loop9.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_dagger.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_dagger.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_dagger.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_dagger.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_dagger.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_dagger.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_dagger.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_dagger.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_punch4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Melee/sfx_wpn_sword3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_noammo3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_reload.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_reload.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_reload.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_reload.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_reload.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_reload.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_reload.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Out of Ammo/sfx_wpn_reload.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Shotgun/sfx_weapon_shotgun3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot1.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot1.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot1.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot1.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot1.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot1.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot1.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot1.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot10.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot10.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot10.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot10.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot10.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot10.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot10.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot10.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot11.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot11.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot11.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot11.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot11.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot11.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot11.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot11.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot12.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot12.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot12.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot12.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot12.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot12.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot12.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot12.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot13.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot13.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot13.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot13.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot13.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot13.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot13.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot13.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot14.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot14.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot14.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot14.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot14.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot14.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot14.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot14.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot15.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot15.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot15.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot15.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot15.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot15.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot15.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot15.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot16.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot16.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot16.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot16.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot16.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot16.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot16.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot16.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot17.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot17.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot17.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot17.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot17.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot17.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot17.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot17.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot18.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot18.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot18.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot18.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot18.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot18.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot18.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot18.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot19.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot19.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot19.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot19.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot19.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot19.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot19.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot19.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot2.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot2.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot2.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot2.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot2.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot2.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot2.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot2.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot20.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot20.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot20.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot20.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot20.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot20.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot20.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot20.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot21.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot21.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot21.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot21.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot21.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot21.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot21.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot21.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot22.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot22.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot22.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot22.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot22.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot22.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot22.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot22.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot3.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot3.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot3.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot3.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot3.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot3.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot3.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot3.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot4.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot4.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot4.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot4.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot4.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot4.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot4.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot4.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot5.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot5.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot5.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot5.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot5.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot5.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot5.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot5.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot6.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot6.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot6.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot6.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot6.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot6.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot6.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot6.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot7.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot7.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot7.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot7.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot7.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot7.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot7.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot7.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot8.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot8.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot8.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot8.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot8.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot8.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot8.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot8.wav.meta
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot9.wav b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot9.wav
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot9.wav
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot9.wav
diff --git a/MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot9.wav.meta b/MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot9.wav.meta
similarity index 100%
rename from MrBigsock/Assets/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot9.wav.meta
rename to MrBigsock/Assets/Resources/sound/The Essential Retro Video Game Sound Effects Collection [512 sounds] By Juhani Junkala/Weapons/Single Shot Sounds/sfx_weapon_singleshot9.wav.meta