From af3687a213bb4930dbcb27ab23f3f4a562b3b5e9 Mon Sep 17 00:00:00 2001 From: AeonLucid Date: Mon, 21 Sep 2020 01:28:19 +0200 Subject: [PATCH] Rename project files --- .../Impostor.Agent.vcxproj} | 0 .../Impostor.Agent.vcxproj.filters} | 0 src/{AmongUs.Agent => Impostor.Agent}/logger.cpp | 0 src/{AmongUs.Agent => Impostor.Agent}/logger.h | 0 src/{AmongUs.Agent => Impostor.Agent}/main.cpp | 0 .../Impostor.Client.csproj} | 2 +- src/{AmongUs.Client => Impostor.Client}/Program.cs | 4 ++-- .../Data/DisconnectMessages.cs | 2 +- .../Exceptions/AmongUsException.cs | 2 +- .../Extensions/ConnectionExtensions.cs | 6 +++--- .../Impostor.Server.csproj} | 2 +- .../Net/Client.cs | 12 ++++++------ .../Net/ClientManager.cs | 4 ++-- .../Net/ClientPlayer.cs | 4 ++-- .../Net/Game.cs | 14 +++++++------- .../Net/GameManager.cs | 4 ++-- .../Net/GameStates.cs | 2 +- .../Net/Matchmaker.cs | 8 ++++---- .../Net/Response/Message1DisconnectReason.cs | 6 +++--- .../Net/Response/MessageBase.cs | 2 +- .../Net/Response/MessageFlag.cs | 2 +- src/{AmongUs.Server => Impostor.Server}/Program.cs | 4 ++-- .../Impostor.Shared.csproj} | 0 .../Innersloth/Data/AlterGameTags.cs | 2 +- .../Innersloth/Data/DisconnectReason.cs | 2 +- .../Innersloth/Data/GameKeywords.cs | 2 +- .../Innersloth/Data/GameStates.cs | 2 +- .../Innersloth/Data/LimboStates.cs | 2 +- .../Innersloth/Data/RequestFlag.cs | 2 +- .../Innersloth/GameCode.cs | 2 +- .../Innersloth/GameOptionsData.cs | 4 ++-- .../Innersloth/RegionInfo.cs | 2 +- .../Innersloth/ServerInfo.cs | 2 +- .../Utils}/HexUtils.cs | 2 +- .../GameCodeTests.cs | 4 ++-- .../Impostor.Tests.csproj} | 2 +- .../Utils => Impostor.Tools.Proxy}/HexUtils.cs | 2 +- .../Impostor.Tools.Proxy.csproj} | 0 .../Program.cs | 2 +- src/{AmongUsServer.sln => Impostor.sln} | 12 ++++++------ 40 files changed, 63 insertions(+), 63 deletions(-) rename src/{AmongUs.Agent/AmongUs.Agent.vcxproj => Impostor.Agent/Impostor.Agent.vcxproj} (100%) rename src/{AmongUs.Agent/AmongUs.Agent.vcxproj.filters => Impostor.Agent/Impostor.Agent.vcxproj.filters} (100%) rename src/{AmongUs.Agent => Impostor.Agent}/logger.cpp (100%) rename src/{AmongUs.Agent => Impostor.Agent}/logger.h (100%) rename src/{AmongUs.Agent => Impostor.Agent}/main.cpp (100%) rename src/{AmongUs.Client/AmongUs.Client.csproj => Impostor.Client/Impostor.Client.csproj} (73%) rename src/{AmongUs.Client => Impostor.Client}/Program.cs (92%) rename src/{AmongUs.Server => Impostor.Server}/Data/DisconnectMessages.cs (93%) rename src/{AmongUs.Server => Impostor.Server}/Exceptions/AmongUsException.cs (93%) rename src/{AmongUs.Server => Impostor.Server}/Extensions/ConnectionExtensions.cs (75%) rename src/{AmongUs.Server/AmongUs.Server.csproj => Impostor.Server/Impostor.Server.csproj} (84%) rename src/{AmongUs.Server => Impostor.Server}/Net/Client.cs (97%) rename src/{AmongUs.Server => Impostor.Server}/Net/ClientManager.cs (96%) rename src/{AmongUs.Server => Impostor.Server}/Net/ClientPlayer.cs (79%) rename src/{AmongUs.Server => Impostor.Server}/Net/Game.cs (98%) rename src/{AmongUs.Server => Impostor.Server}/Net/GameManager.cs (95%) rename src/{AmongUs.Server => Impostor.Server}/Net/GameStates.cs (80%) rename src/{AmongUs.Server => Impostor.Server}/Net/Matchmaker.cs (92%) rename src/{AmongUs.Server => Impostor.Server}/Net/Response/Message1DisconnectReason.cs (89%) rename src/{AmongUs.Server => Impostor.Server}/Net/Response/MessageBase.cs (94%) rename src/{AmongUs.Server => Impostor.Server}/Net/Response/MessageFlag.cs (65%) rename src/{AmongUs.Server => Impostor.Server}/Program.cs (95%) rename src/{AmongUs.Shared/AmongUs.Shared.csproj => Impostor.Shared/Impostor.Shared.csproj} (100%) rename src/{AmongUs.Shared => Impostor.Shared}/Innersloth/Data/AlterGameTags.cs (63%) rename src/{AmongUs.Shared => Impostor.Shared}/Innersloth/Data/DisconnectReason.cs (97%) rename src/{AmongUs.Shared => Impostor.Shared}/Innersloth/Data/GameKeywords.cs (87%) rename src/{AmongUs.Shared => Impostor.Shared}/Innersloth/Data/GameStates.cs (72%) rename src/{AmongUs.Shared => Impostor.Shared}/Innersloth/Data/LimboStates.cs (69%) rename src/{AmongUs.Shared => Impostor.Shared}/Innersloth/Data/RequestFlag.cs (90%) rename src/{AmongUs.Shared => Impostor.Shared}/Innersloth/GameCode.cs (98%) rename src/{AmongUs.Shared => Impostor.Shared}/Innersloth/GameOptionsData.cs (97%) rename src/{AmongUs.Shared => Impostor.Shared}/Innersloth/RegionInfo.cs (97%) rename src/{AmongUs.Shared => Impostor.Shared}/Innersloth/ServerInfo.cs (96%) rename src/{AmongUs.Tools.Proxy => Impostor.Shared/Utils}/HexUtils.cs (98%) rename src/{AmongUs.Tests => Impostor.Tests}/GameCodeTests.cs (91%) rename src/{AmongUs.Tests/AmongUs.Tests.csproj => Impostor.Tests/Impostor.Tests.csproj} (87%) rename src/{AmongUs.Shared/Utils => Impostor.Tools.Proxy}/HexUtils.cs (98%) rename src/{AmongUs.Tools.Proxy/AmongUs.Tools.Proxy.csproj => Impostor.Tools.Proxy/Impostor.Tools.Proxy.csproj} (100%) rename src/{AmongUs.Tools.Proxy => Impostor.Tools.Proxy}/Program.cs (99%) rename src/{AmongUsServer.sln => Impostor.sln} (85%) diff --git a/src/AmongUs.Agent/AmongUs.Agent.vcxproj b/src/Impostor.Agent/Impostor.Agent.vcxproj similarity index 100% rename from src/AmongUs.Agent/AmongUs.Agent.vcxproj rename to src/Impostor.Agent/Impostor.Agent.vcxproj diff --git a/src/AmongUs.Agent/AmongUs.Agent.vcxproj.filters b/src/Impostor.Agent/Impostor.Agent.vcxproj.filters similarity index 100% rename from src/AmongUs.Agent/AmongUs.Agent.vcxproj.filters rename to src/Impostor.Agent/Impostor.Agent.vcxproj.filters diff --git a/src/AmongUs.Agent/logger.cpp b/src/Impostor.Agent/logger.cpp similarity index 100% rename from src/AmongUs.Agent/logger.cpp rename to src/Impostor.Agent/logger.cpp diff --git a/src/AmongUs.Agent/logger.h b/src/Impostor.Agent/logger.h similarity index 100% rename from src/AmongUs.Agent/logger.h rename to src/Impostor.Agent/logger.h diff --git a/src/AmongUs.Agent/main.cpp b/src/Impostor.Agent/main.cpp similarity index 100% rename from src/AmongUs.Agent/main.cpp rename to src/Impostor.Agent/main.cpp diff --git a/src/AmongUs.Client/AmongUs.Client.csproj b/src/Impostor.Client/Impostor.Client.csproj similarity index 73% rename from src/AmongUs.Client/AmongUs.Client.csproj rename to src/Impostor.Client/Impostor.Client.csproj index be6c4f5a9..6794e8fc4 100644 --- a/src/AmongUs.Client/AmongUs.Client.csproj +++ b/src/Impostor.Client/Impostor.Client.csproj @@ -6,7 +6,7 @@ - + diff --git a/src/AmongUs.Client/Program.cs b/src/Impostor.Client/Program.cs similarity index 92% rename from src/AmongUs.Client/Program.cs rename to src/Impostor.Client/Program.cs index a6436092e..7cd684cff 100644 --- a/src/AmongUs.Client/Program.cs +++ b/src/Impostor.Client/Program.cs @@ -1,8 +1,8 @@ using System; using System.IO; -using AmongUs.Shared.Innersloth; +using Impostor.Shared.Innersloth; -namespace AmongUs.Client +namespace Impostor.Client { internal static class Program { diff --git a/src/AmongUs.Server/Data/DisconnectMessages.cs b/src/Impostor.Server/Data/DisconnectMessages.cs similarity index 93% rename from src/AmongUs.Server/Data/DisconnectMessages.cs rename to src/Impostor.Server/Data/DisconnectMessages.cs index ab3be881b..1c1617380 100644 --- a/src/AmongUs.Server/Data/DisconnectMessages.cs +++ b/src/Impostor.Server/Data/DisconnectMessages.cs @@ -1,4 +1,4 @@ -namespace AmongUs.Server.Data +namespace Impostor.Server.Data { public static class DisconnectMessages { diff --git a/src/AmongUs.Server/Exceptions/AmongUsException.cs b/src/Impostor.Server/Exceptions/AmongUsException.cs similarity index 93% rename from src/AmongUs.Server/Exceptions/AmongUsException.cs rename to src/Impostor.Server/Exceptions/AmongUsException.cs index 1009b87f4..0d5ff2034 100644 --- a/src/AmongUs.Server/Exceptions/AmongUsException.cs +++ b/src/Impostor.Server/Exceptions/AmongUsException.cs @@ -1,7 +1,7 @@ using System; using System.Runtime.Serialization; -namespace AmongUs.Server.Exceptions +namespace Impostor.Server.Exceptions { public class AmongUsException : Exception { diff --git a/src/AmongUs.Server/Extensions/ConnectionExtensions.cs b/src/Impostor.Server/Extensions/ConnectionExtensions.cs similarity index 75% rename from src/AmongUs.Server/Extensions/ConnectionExtensions.cs rename to src/Impostor.Server/Extensions/ConnectionExtensions.cs index 63bb31c9a..21ef19e0f 100644 --- a/src/AmongUs.Server/Extensions/ConnectionExtensions.cs +++ b/src/Impostor.Server/Extensions/ConnectionExtensions.cs @@ -1,7 +1,7 @@ -using AmongUs.Server.Net.Response; -using Hazel; +using Hazel; +using Impostor.Server.Net.Response; -namespace AmongUs.Server.Extensions +namespace Impostor.Server.Extensions { internal static class ConnectionExtensions { diff --git a/src/AmongUs.Server/AmongUs.Server.csproj b/src/Impostor.Server/Impostor.Server.csproj similarity index 84% rename from src/AmongUs.Server/AmongUs.Server.csproj rename to src/Impostor.Server/Impostor.Server.csproj index 77f09702c..46ef7fad7 100644 --- a/src/AmongUs.Server/AmongUs.Server.csproj +++ b/src/Impostor.Server/Impostor.Server.csproj @@ -7,7 +7,7 @@ - + diff --git a/src/AmongUs.Server/Net/Client.cs b/src/Impostor.Server/Net/Client.cs similarity index 97% rename from src/AmongUs.Server/Net/Client.cs rename to src/Impostor.Server/Net/Client.cs index 059666608..b3a041eec 100644 --- a/src/AmongUs.Server/Net/Client.cs +++ b/src/Impostor.Server/Net/Client.cs @@ -1,14 +1,14 @@ using System; -using AmongUs.Server.Data; -using AmongUs.Server.Extensions; -using AmongUs.Server.Net.Response; -using AmongUs.Shared.Innersloth; -using AmongUs.Shared.Innersloth.Data; using Hazel; +using Impostor.Server.Data; +using Impostor.Server.Extensions; +using Impostor.Server.Net.Response; +using Impostor.Shared.Innersloth; +using Impostor.Shared.Innersloth.Data; using Serilog; using ILogger = Serilog.ILogger; -namespace AmongUs.Server.Net +namespace Impostor.Server.Net { public class Client { diff --git a/src/AmongUs.Server/Net/ClientManager.cs b/src/Impostor.Server/Net/ClientManager.cs similarity index 96% rename from src/AmongUs.Server/Net/ClientManager.cs rename to src/Impostor.Server/Net/ClientManager.cs index 9a3cb7b51..2a43d142e 100644 --- a/src/AmongUs.Server/Net/ClientManager.cs +++ b/src/Impostor.Server/Net/ClientManager.cs @@ -1,8 +1,8 @@ using System.Collections.Concurrent; -using AmongUs.Server.Exceptions; +using Impostor.Server.Exceptions; using Serilog; -namespace AmongUs.Server.Net +namespace Impostor.Server.Net { public class ClientManager { diff --git a/src/AmongUs.Server/Net/ClientPlayer.cs b/src/Impostor.Server/Net/ClientPlayer.cs similarity index 79% rename from src/AmongUs.Server/Net/ClientPlayer.cs rename to src/Impostor.Server/Net/ClientPlayer.cs index 1b9322c7c..a0b7866e2 100644 --- a/src/AmongUs.Server/Net/ClientPlayer.cs +++ b/src/Impostor.Server/Net/ClientPlayer.cs @@ -1,6 +1,6 @@ -using AmongUs.Shared.Innersloth.Data; +using Impostor.Shared.Innersloth.Data; -namespace AmongUs.Server.Net +namespace Impostor.Server.Net { public class ClientPlayer { diff --git a/src/AmongUs.Server/Net/Game.cs b/src/Impostor.Server/Net/Game.cs similarity index 98% rename from src/AmongUs.Server/Net/Game.cs rename to src/Impostor.Server/Net/Game.cs index 723280c26..be982d745 100644 --- a/src/AmongUs.Server/Net/Game.cs +++ b/src/Impostor.Server/Net/Game.cs @@ -3,17 +3,17 @@ using System.Collections.Generic; using System.Linq; using System.Net; -using AmongUs.Server.Data; -using AmongUs.Server.Exceptions; -using AmongUs.Server.Extensions; -using AmongUs.Server.Net.Response; -using AmongUs.Shared.Innersloth; -using AmongUs.Shared.Innersloth.Data; using Hazel; +using Impostor.Server.Data; +using Impostor.Server.Exceptions; +using Impostor.Server.Extensions; +using Impostor.Server.Net.Response; +using Impostor.Shared.Innersloth; +using Impostor.Shared.Innersloth.Data; using Serilog; using ILogger = Serilog.ILogger; -namespace AmongUs.Server.Net +namespace Impostor.Server.Net { public class Game { diff --git a/src/AmongUs.Server/Net/GameManager.cs b/src/Impostor.Server/Net/GameManager.cs similarity index 95% rename from src/AmongUs.Server/Net/GameManager.cs rename to src/Impostor.Server/Net/GameManager.cs index 100e146f1..664f6407d 100644 --- a/src/AmongUs.Server/Net/GameManager.cs +++ b/src/Impostor.Server/Net/GameManager.cs @@ -1,8 +1,8 @@ using System.Collections.Concurrent; -using AmongUs.Shared.Innersloth; +using Impostor.Shared.Innersloth; using Serilog; -namespace AmongUs.Server.Net +namespace Impostor.Server.Net { public class GameManager { diff --git a/src/AmongUs.Server/Net/GameStates.cs b/src/Impostor.Server/Net/GameStates.cs similarity index 80% rename from src/AmongUs.Server/Net/GameStates.cs rename to src/Impostor.Server/Net/GameStates.cs index a50e9e38f..f24ecc5bf 100644 --- a/src/AmongUs.Server/Net/GameStates.cs +++ b/src/Impostor.Server/Net/GameStates.cs @@ -1,4 +1,4 @@ -namespace AmongUs.Server.Net +namespace Impostor.Server.Net { public enum GameStates : byte { diff --git a/src/AmongUs.Server/Net/Matchmaker.cs b/src/Impostor.Server/Net/Matchmaker.cs similarity index 92% rename from src/AmongUs.Server/Net/Matchmaker.cs rename to src/Impostor.Server/Net/Matchmaker.cs index 5c2dc7789..8acc9d603 100644 --- a/src/AmongUs.Server/Net/Matchmaker.cs +++ b/src/Impostor.Server/Net/Matchmaker.cs @@ -1,13 +1,13 @@ using System.Net; -using AmongUs.Server.Extensions; -using AmongUs.Server.Net.Response; -using AmongUs.Shared.Innersloth.Data; using Hazel; using Hazel.Udp; +using Impostor.Server.Extensions; +using Impostor.Server.Net.Response; +using Impostor.Shared.Innersloth.Data; using Serilog; using ILogger = Serilog.ILogger; -namespace AmongUs.Server.Net +namespace Impostor.Server.Net { public class Matchmaker { diff --git a/src/AmongUs.Server/Net/Response/Message1DisconnectReason.cs b/src/Impostor.Server/Net/Response/Message1DisconnectReason.cs similarity index 89% rename from src/AmongUs.Server/Net/Response/Message1DisconnectReason.cs rename to src/Impostor.Server/Net/Response/Message1DisconnectReason.cs index 86362aa12..0ab5be491 100644 --- a/src/AmongUs.Server/Net/Response/Message1DisconnectReason.cs +++ b/src/Impostor.Server/Net/Response/Message1DisconnectReason.cs @@ -1,7 +1,7 @@ -using AmongUs.Shared.Innersloth.Data; -using Hazel; +using Hazel; +using Impostor.Shared.Innersloth.Data; -namespace AmongUs.Server.Net.Response +namespace Impostor.Server.Net.Response { public class Message1DisconnectReason : MessageBase { diff --git a/src/AmongUs.Server/Net/Response/MessageBase.cs b/src/Impostor.Server/Net/Response/MessageBase.cs similarity index 94% rename from src/AmongUs.Server/Net/Response/MessageBase.cs rename to src/Impostor.Server/Net/Response/MessageBase.cs index dd187901e..d9fceabdb 100644 --- a/src/AmongUs.Server/Net/Response/MessageBase.cs +++ b/src/Impostor.Server/Net/Response/MessageBase.cs @@ -1,7 +1,7 @@ using System; using Hazel; -namespace AmongUs.Server.Net.Response +namespace Impostor.Server.Net.Response { public abstract class MessageBase : IDisposable { diff --git a/src/AmongUs.Server/Net/Response/MessageFlag.cs b/src/Impostor.Server/Net/Response/MessageFlag.cs similarity index 65% rename from src/AmongUs.Server/Net/Response/MessageFlag.cs rename to src/Impostor.Server/Net/Response/MessageFlag.cs index 68cbe4b1a..a29135db9 100644 --- a/src/AmongUs.Server/Net/Response/MessageFlag.cs +++ b/src/Impostor.Server/Net/Response/MessageFlag.cs @@ -1,4 +1,4 @@ -namespace AmongUs.Server.Net.Response +namespace Impostor.Server.Net.Response { public enum MessageFlag : byte { diff --git a/src/AmongUs.Server/Program.cs b/src/Impostor.Server/Program.cs similarity index 95% rename from src/AmongUs.Server/Program.cs rename to src/Impostor.Server/Program.cs index 7857696cd..9dab49113 100644 --- a/src/AmongUs.Server/Program.cs +++ b/src/Impostor.Server/Program.cs @@ -1,10 +1,10 @@ using System; using System.Net; using System.Threading; -using AmongUs.Server.Net; +using Impostor.Server.Net; using Serilog; -namespace AmongUs.Server +namespace Impostor.Server { internal static class Program { diff --git a/src/AmongUs.Shared/AmongUs.Shared.csproj b/src/Impostor.Shared/Impostor.Shared.csproj similarity index 100% rename from src/AmongUs.Shared/AmongUs.Shared.csproj rename to src/Impostor.Shared/Impostor.Shared.csproj diff --git a/src/AmongUs.Shared/Innersloth/Data/AlterGameTags.cs b/src/Impostor.Shared/Innersloth/Data/AlterGameTags.cs similarity index 63% rename from src/AmongUs.Shared/Innersloth/Data/AlterGameTags.cs rename to src/Impostor.Shared/Innersloth/Data/AlterGameTags.cs index a89c62830..c24618324 100644 --- a/src/AmongUs.Shared/Innersloth/Data/AlterGameTags.cs +++ b/src/Impostor.Shared/Innersloth/Data/AlterGameTags.cs @@ -1,4 +1,4 @@ -namespace AmongUs.Shared.Innersloth.Data +namespace Impostor.Shared.Innersloth.Data { public enum AlterGameTags : byte { diff --git a/src/AmongUs.Shared/Innersloth/Data/DisconnectReason.cs b/src/Impostor.Shared/Innersloth/Data/DisconnectReason.cs similarity index 97% rename from src/AmongUs.Shared/Innersloth/Data/DisconnectReason.cs rename to src/Impostor.Shared/Innersloth/Data/DisconnectReason.cs index 8d5149d55..f3f9b665f 100644 --- a/src/AmongUs.Shared/Innersloth/Data/DisconnectReason.cs +++ b/src/Impostor.Shared/Innersloth/Data/DisconnectReason.cs @@ -1,4 +1,4 @@ -namespace AmongUs.Shared.Innersloth.Data +namespace Impostor.Shared.Innersloth.Data { public enum DisconnectReason { diff --git a/src/AmongUs.Shared/Innersloth/Data/GameKeywords.cs b/src/Impostor.Shared/Innersloth/Data/GameKeywords.cs similarity index 87% rename from src/AmongUs.Shared/Innersloth/Data/GameKeywords.cs rename to src/Impostor.Shared/Innersloth/Data/GameKeywords.cs index 547815339..daefefe23 100644 --- a/src/AmongUs.Shared/Innersloth/Data/GameKeywords.cs +++ b/src/Impostor.Shared/Innersloth/Data/GameKeywords.cs @@ -1,6 +1,6 @@ using System; -namespace AmongUs.Shared.Innersloth.Data +namespace Impostor.Shared.Innersloth.Data { [Flags] public enum GameKeywords : uint diff --git a/src/AmongUs.Shared/Innersloth/Data/GameStates.cs b/src/Impostor.Shared/Innersloth/Data/GameStates.cs similarity index 72% rename from src/AmongUs.Shared/Innersloth/Data/GameStates.cs rename to src/Impostor.Shared/Innersloth/Data/GameStates.cs index b43c7a03b..ec2a2f2a2 100644 --- a/src/AmongUs.Shared/Innersloth/Data/GameStates.cs +++ b/src/Impostor.Shared/Innersloth/Data/GameStates.cs @@ -1,4 +1,4 @@ -namespace AmongUs.Shared.Innersloth.Data +namespace Impostor.Shared.Innersloth.Data { public enum GameStates : byte { diff --git a/src/AmongUs.Shared/Innersloth/Data/LimboStates.cs b/src/Impostor.Shared/Innersloth/Data/LimboStates.cs similarity index 69% rename from src/AmongUs.Shared/Innersloth/Data/LimboStates.cs rename to src/Impostor.Shared/Innersloth/Data/LimboStates.cs index e81e4da2d..e50161429 100644 --- a/src/AmongUs.Shared/Innersloth/Data/LimboStates.cs +++ b/src/Impostor.Shared/Innersloth/Data/LimboStates.cs @@ -1,4 +1,4 @@ -namespace AmongUs.Shared.Innersloth.Data +namespace Impostor.Shared.Innersloth.Data { public enum LimboStates { diff --git a/src/AmongUs.Shared/Innersloth/Data/RequestFlag.cs b/src/Impostor.Shared/Innersloth/Data/RequestFlag.cs similarity index 90% rename from src/AmongUs.Shared/Innersloth/Data/RequestFlag.cs rename to src/Impostor.Shared/Innersloth/Data/RequestFlag.cs index 8d824265d..d07eefa15 100644 --- a/src/AmongUs.Shared/Innersloth/Data/RequestFlag.cs +++ b/src/Impostor.Shared/Innersloth/Data/RequestFlag.cs @@ -1,4 +1,4 @@ -namespace AmongUs.Shared.Innersloth.Data +namespace Impostor.Shared.Innersloth.Data { public enum RequestFlag : byte { diff --git a/src/AmongUs.Shared/Innersloth/GameCode.cs b/src/Impostor.Shared/Innersloth/GameCode.cs similarity index 98% rename from src/AmongUs.Shared/Innersloth/GameCode.cs rename to src/Impostor.Shared/Innersloth/GameCode.cs index 152048bae..8f01fde07 100644 --- a/src/AmongUs.Shared/Innersloth/GameCode.cs +++ b/src/Impostor.Shared/Innersloth/GameCode.cs @@ -4,7 +4,7 @@ using System.Security.Cryptography; using System.Text; -namespace AmongUs.Shared.Innersloth +namespace Impostor.Shared.Innersloth { public static class GameCode { diff --git a/src/AmongUs.Shared/Innersloth/GameOptionsData.cs b/src/Impostor.Shared/Innersloth/GameOptionsData.cs similarity index 97% rename from src/AmongUs.Shared/Innersloth/GameOptionsData.cs rename to src/Impostor.Shared/Innersloth/GameOptionsData.cs index 4fd19f6ae..711edb176 100644 --- a/src/AmongUs.Shared/Innersloth/GameOptionsData.cs +++ b/src/Impostor.Shared/Innersloth/GameOptionsData.cs @@ -1,8 +1,8 @@ using System; using System.IO; -using AmongUs.Shared.Innersloth.Data; +using Impostor.Shared.Innersloth.Data; -namespace AmongUs.Shared.Innersloth +namespace Impostor.Shared.Innersloth { public class GameOptionsData { diff --git a/src/AmongUs.Shared/Innersloth/RegionInfo.cs b/src/Impostor.Shared/Innersloth/RegionInfo.cs similarity index 97% rename from src/AmongUs.Shared/Innersloth/RegionInfo.cs rename to src/Impostor.Shared/Innersloth/RegionInfo.cs index ce23e5d1a..926bd8d84 100644 --- a/src/AmongUs.Shared/Innersloth/RegionInfo.cs +++ b/src/Impostor.Shared/Innersloth/RegionInfo.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.IO; -namespace AmongUs.Shared.Innersloth +namespace Impostor.Shared.Innersloth { public class RegionInfo { diff --git a/src/AmongUs.Shared/Innersloth/ServerInfo.cs b/src/Impostor.Shared/Innersloth/ServerInfo.cs similarity index 96% rename from src/AmongUs.Shared/Innersloth/ServerInfo.cs rename to src/Impostor.Shared/Innersloth/ServerInfo.cs index 2be692474..c76a7e4f9 100644 --- a/src/AmongUs.Shared/Innersloth/ServerInfo.cs +++ b/src/Impostor.Shared/Innersloth/ServerInfo.cs @@ -1,7 +1,7 @@ using System.IO; using System.Net; -namespace AmongUs.Shared.Innersloth +namespace Impostor.Shared.Innersloth { public class ServerInfo { diff --git a/src/AmongUs.Tools.Proxy/HexUtils.cs b/src/Impostor.Shared/Utils/HexUtils.cs similarity index 98% rename from src/AmongUs.Tools.Proxy/HexUtils.cs rename to src/Impostor.Shared/Utils/HexUtils.cs index c2a33983f..04e497b39 100644 --- a/src/AmongUs.Tools.Proxy/HexUtils.cs +++ b/src/Impostor.Shared/Utils/HexUtils.cs @@ -1,7 +1,7 @@ using System; using System.Text; -namespace AmongUs.Tools.Proxy +namespace Impostor.Shared.Utils { public static class HexUtils { diff --git a/src/AmongUs.Tests/GameCodeTests.cs b/src/Impostor.Tests/GameCodeTests.cs similarity index 91% rename from src/AmongUs.Tests/GameCodeTests.cs rename to src/Impostor.Tests/GameCodeTests.cs index 7fc658294..24e61719f 100644 --- a/src/AmongUs.Tests/GameCodeTests.cs +++ b/src/Impostor.Tests/GameCodeTests.cs @@ -1,7 +1,7 @@ -using AmongUs.Shared.Innersloth; +using Impostor.Shared.Innersloth; using Xunit; -namespace AmongUs.Tests +namespace Impostor.Tests { public class GameCodeTests { diff --git a/src/AmongUs.Tests/AmongUs.Tests.csproj b/src/Impostor.Tests/Impostor.Tests.csproj similarity index 87% rename from src/AmongUs.Tests/AmongUs.Tests.csproj rename to src/Impostor.Tests/Impostor.Tests.csproj index a754dfb58..88929eb0f 100644 --- a/src/AmongUs.Tests/AmongUs.Tests.csproj +++ b/src/Impostor.Tests/Impostor.Tests.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/AmongUs.Shared/Utils/HexUtils.cs b/src/Impostor.Tools.Proxy/HexUtils.cs similarity index 98% rename from src/AmongUs.Shared/Utils/HexUtils.cs rename to src/Impostor.Tools.Proxy/HexUtils.cs index 55b9cc0b4..79517b4d2 100644 --- a/src/AmongUs.Shared/Utils/HexUtils.cs +++ b/src/Impostor.Tools.Proxy/HexUtils.cs @@ -1,7 +1,7 @@ using System; using System.Text; -namespace AmongUs.Shared.Utils +namespace Impostor.Tools.Proxy { public static class HexUtils { diff --git a/src/AmongUs.Tools.Proxy/AmongUs.Tools.Proxy.csproj b/src/Impostor.Tools.Proxy/Impostor.Tools.Proxy.csproj similarity index 100% rename from src/AmongUs.Tools.Proxy/AmongUs.Tools.Proxy.csproj rename to src/Impostor.Tools.Proxy/Impostor.Tools.Proxy.csproj diff --git a/src/AmongUs.Tools.Proxy/Program.cs b/src/Impostor.Tools.Proxy/Program.cs similarity index 99% rename from src/AmongUs.Tools.Proxy/Program.cs rename to src/Impostor.Tools.Proxy/Program.cs index 6136f50d3..539463c22 100644 --- a/src/AmongUs.Tools.Proxy/Program.cs +++ b/src/Impostor.Tools.Proxy/Program.cs @@ -6,7 +6,7 @@ using PcapDotNet.Core; using PcapDotNet.Packets; -namespace AmongUs.Tools.Proxy +namespace Impostor.Tools.Proxy { internal static class Program { diff --git a/src/AmongUsServer.sln b/src/Impostor.sln similarity index 85% rename from src/AmongUsServer.sln rename to src/Impostor.sln index 391da3d80..6f6f9691e 100644 --- a/src/AmongUsServer.sln +++ b/src/Impostor.sln @@ -3,23 +3,23 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.30503.244 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AmongUs.Agent", "AmongUs.Agent\AmongUs.Agent.vcxproj", "{097BE795-88E9-4E7B-92F3-F6DDDBE3F012}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Imposter.Agent", "Imposter.Agent\Imposter.Agent.vcxproj", "{097BE795-88E9-4E7B-92F3-F6DDDBE3F012}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AmongUs.Server", "AmongUs.Server\AmongUs.Server.csproj", "{1B0390AF-A4F3-4FE4-B093-708B0135C0B3}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Imposter.Server", "Imposter.Server\Imposter.Server.csproj", "{1B0390AF-A4F3-4FE4-B093-708B0135C0B3}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AmongUs.Client", "AmongUs.Client\AmongUs.Client.csproj", "{24F07173-D4A7-41C6-BA51-4516AB68343C}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Imposter.Client", "Imposter.Client\Imposter.Client.csproj", "{24F07173-D4A7-41C6-BA51-4516AB68343C}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AmongUs.Shared", "AmongUs.Shared\AmongUs.Shared.csproj", "{1D109A96-FADF-41B9-A845-457A7A5C0C5A}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Imposter.Shared", "Imposter.Shared\Imposter.Shared.csproj", "{1D109A96-FADF-41B9-A845-457A7A5C0C5A}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "submodules", "submodules", "{DFA3CC6A-A27C-4713-876D-A55912C78C45}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hazel", "..\submodules\Hazel-Networking\Hazel\Hazel.csproj", "{02CFBD30-D77D-400F-94B2-700F60EFDD7F}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AmongUs.Tests", "AmongUs.Tests\AmongUs.Tests.csproj", "{C1385C67-A7DD-46D2-80F6-FA428B85FB22}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Imposter.Tests", "Imposter.Tests\Imposter.Tests.csproj", "{C1385C67-A7DD-46D2-80F6-FA428B85FB22}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{56DD9707-D811-4056-9E2C-8A9CC2479B07}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AmongUs.Tools.Proxy", "AmongUs.Tools.Proxy\AmongUs.Tools.Proxy.csproj", "{D16B8DE9-8EE2-4F6A-9352-305D5AB0233D}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Imposter.Tools.Proxy", "Imposter.Tools.Proxy\Imposter.Tools.Proxy.csproj", "{D16B8DE9-8EE2-4F6A-9352-305D5AB0233D}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution