diff --git a/Wormholes.sln b/Wormholes.sln index 96ea453..7c40f22 100644 --- a/Wormholes.sln +++ b/Wormholes.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 VisualStudioVersion = 14.0.25420.1 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wormholes", "Wormholes.csproj", "{75F66507-7416-40F4-98A3-51F3A323E4A0}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wormholes", "Wormholes\Wormholes.csproj", "{75F66507-7416-40F4-98A3-51F3A323E4A0}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/API.cs b/Wormholes/API.cs similarity index 100% rename from API.cs rename to Wormholes/API.cs diff --git a/Config.cs b/Wormholes/Config.cs similarity index 100% rename from Config.cs rename to Wormholes/Config.cs diff --git a/Items/ChaosBombItem.cs b/Wormholes/Items/ChaosBombItem.cs similarity index 100% rename from Items/ChaosBombItem.cs rename to Wormholes/Items/ChaosBombItem.cs diff --git a/Items/ChaosBombItem.png b/Wormholes/Items/ChaosBombItem.png similarity index 100% rename from Items/ChaosBombItem.png rename to Wormholes/Items/ChaosBombItem.png diff --git a/Items/TownPortalScrollItem.cs b/Wormholes/Items/TownPortalScrollItem.cs similarity index 100% rename from Items/TownPortalScrollItem.cs rename to Wormholes/Items/TownPortalScrollItem.cs diff --git a/Items/TownPortalScrollItem.png b/Wormholes/Items/TownPortalScrollItem.png similarity index 100% rename from Items/TownPortalScrollItem.png rename to Wormholes/Items/TownPortalScrollItem.png diff --git a/LICENSE b/Wormholes/LICENSE similarity index 100% rename from LICENSE rename to Wormholes/LICENSE diff --git a/NetProtocols/SettingsAndWormholesProtocol.cs b/Wormholes/NetProtocols/SettingsAndWormholesProtocol.cs similarity index 100% rename from NetProtocols/SettingsAndWormholesProtocol.cs rename to Wormholes/NetProtocols/SettingsAndWormholesProtocol.cs diff --git a/NetProtocols/WormholeRerollProtocol.cs b/Wormholes/NetProtocols/WormholeRerollProtocol.cs similarity index 100% rename from NetProtocols/WormholeRerollProtocol.cs rename to Wormholes/NetProtocols/WormholeRerollProtocol.cs diff --git a/NetProtocols/WormholeUpdateProtocol.cs b/Wormholes/NetProtocols/WormholeUpdateProtocol.cs similarity index 100% rename from NetProtocols/WormholeUpdateProtocol.cs rename to Wormholes/NetProtocols/WormholeUpdateProtocol.cs diff --git a/Projectiles/ChaosBombProjectile.cs b/Wormholes/Projectiles/ChaosBombProjectile.cs similarity index 100% rename from Projectiles/ChaosBombProjectile.cs rename to Wormholes/Projectiles/ChaosBombProjectile.cs diff --git a/Projectiles/ChaosBombProjectile.png b/Wormholes/Projectiles/ChaosBombProjectile.png similarity index 100% rename from Projectiles/ChaosBombProjectile.png rename to Wormholes/Projectiles/ChaosBombProjectile.png diff --git a/README.md b/Wormholes/README.md similarity index 100% rename from README.md rename to Wormholes/README.md diff --git a/Utils/SpriteAnimator.cs b/Wormholes/Utils/SpriteAnimator.cs similarity index 100% rename from Utils/SpriteAnimator.cs rename to Wormholes/Utils/SpriteAnimator.cs diff --git a/Wormholes.csproj b/Wormholes/Wormholes.csproj similarity index 87% rename from Wormholes.csproj rename to Wormholes/Wormholes.csproj index c86776e..353df47 100644 --- a/Wormholes.csproj +++ b/Wormholes/Wormholes.csproj @@ -16,7 +16,7 @@ - ..\..\Mod Helpers\v5 (tML11)\HamstarHelpers\bin\Release\net452\HamstarHelpers.dll + ..\..\..\Mod Helpers\v5 (tML11)\HamstarHelpers\bin\Release\net452\HamstarHelpers.dll \ No newline at end of file diff --git a/Wormholes.csproj.user b/Wormholes/Wormholes.csproj.user similarity index 100% rename from Wormholes.csproj.user rename to Wormholes/Wormholes.csproj.user diff --git a/Wormholes/MiniWormhole.png b/Wormholes/Wormholes/MiniWormhole.png similarity index 100% rename from Wormholes/MiniWormhole.png rename to Wormholes/Wormholes/MiniWormhole.png diff --git a/Wormholes/Wormhole.png b/Wormholes/Wormholes/Wormhole.png similarity index 100% rename from Wormholes/Wormhole.png rename to Wormholes/Wormholes/Wormhole.png diff --git a/Wormholes/WormholeLink.cs b/Wormholes/Wormholes/WormholeLink.cs similarity index 100% rename from Wormholes/WormholeLink.cs rename to Wormholes/Wormholes/WormholeLink.cs diff --git a/Wormholes/WormholeLink_Interact.cs b/Wormholes/Wormholes/WormholeLink_Interact.cs similarity index 100% rename from Wormholes/WormholeLink_Interact.cs rename to Wormholes/Wormholes/WormholeLink_Interact.cs diff --git a/Wormholes/WormholeLink_TownPortal.cs b/Wormholes/Wormholes/WormholeLink_TownPortal.cs similarity index 100% rename from Wormholes/WormholeLink_TownPortal.cs rename to Wormholes/Wormholes/WormholeLink_TownPortal.cs diff --git a/Wormholes/WormholeManager.cs b/Wormholes/Wormholes/WormholeManager.cs similarity index 100% rename from Wormholes/WormholeManager.cs rename to Wormholes/Wormholes/WormholeManager.cs diff --git a/Wormholes/WormholePortal.cs b/Wormholes/Wormholes/WormholePortal.cs similarity index 100% rename from Wormholes/WormholePortal.cs rename to Wormholes/Wormholes/WormholePortal.cs diff --git a/WormholesMod.cs b/Wormholes/WormholesMod.cs similarity index 100% rename from WormholesMod.cs rename to Wormholes/WormholesMod.cs diff --git a/WormholesMod_Draw.cs b/Wormholes/WormholesMod_Draw.cs similarity index 100% rename from WormholesMod_Draw.cs rename to Wormholes/WormholesMod_Draw.cs diff --git a/WormholesMod_Meta.cs b/Wormholes/WormholesMod_Meta.cs similarity index 100% rename from WormholesMod_Meta.cs rename to Wormholes/WormholesMod_Meta.cs diff --git a/WormholesPlayer.cs b/Wormholes/WormholesPlayer.cs similarity index 100% rename from WormholesPlayer.cs rename to Wormholes/WormholesPlayer.cs diff --git a/WormholesUI.cs b/Wormholes/WormholesUI.cs similarity index 100% rename from WormholesUI.cs rename to Wormholes/WormholesUI.cs diff --git a/WormholesWorld.cs b/Wormholes/WormholesWorld.cs similarity index 100% rename from WormholesWorld.cs rename to Wormholes/WormholesWorld.cs diff --git a/build.txt b/Wormholes/build.txt similarity index 100% rename from build.txt rename to Wormholes/build.txt diff --git a/description.txt b/Wormholes/description.txt similarity index 100% rename from description.txt rename to Wormholes/description.txt diff --git a/icon.png b/Wormholes/icon.png similarity index 100% rename from icon.png rename to Wormholes/icon.png