diff --git a/Content.Client/Administration/UI/AdminAnnounceWindow.xaml.cs b/Content.Client/Administration/UI/AdminAnnounceWindow.xaml.cs index 653a9c2a98..4fcf8f7ed3 100644 --- a/Content.Client/Administration/UI/AdminAnnounceWindow.xaml.cs +++ b/Content.Client/Administration/UI/AdminAnnounceWindow.xaml.cs @@ -1,11 +1,8 @@ -using Content.Client.HUD; using Content.Shared.Administration; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; -using Robust.Shared.IoC; -using Robust.Shared.Localization; namespace Content.Client.Administration.UI { diff --git a/Content.Client/Audio/BackgroundAudioSystem.cs b/Content.Client/Audio/BackgroundAudioSystem.cs index 761cd66140..b1c812f1d9 100644 --- a/Content.Client/Audio/BackgroundAudioSystem.cs +++ b/Content.Client/Audio/BackgroundAudioSystem.cs @@ -1,6 +1,7 @@ using Content.Client.GameTicking.Managers; +using System.Threading; +using Content.Client.Gameplay; using Content.Client.Lobby; -using Content.Client.Viewport; using Content.Shared.CCVar; using JetBrains.Annotations; using Robust.Client; @@ -8,13 +9,10 @@ using Robust.Client.Player; using Robust.Client.State; using Robust.Shared.Audio; using Robust.Shared.Configuration; -using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; -using System.Threading; -using Content.Client.Gameplay; using Robust.Client.GameObjects; using Robust.Client.ResourceManagement; using Timer = Robust.Shared.Timing.Timer; diff --git a/Content.Client/CharacterInfo/Components/CharacterInfoSystem.cs b/Content.Client/CharacterInfo/Components/CharacterInfoSystem.cs index f778383488..6589bf72f3 100644 --- a/Content.Client/CharacterInfo/Components/CharacterInfoSystem.cs +++ b/Content.Client/CharacterInfo/Components/CharacterInfoSystem.cs @@ -1,12 +1,10 @@ -using System.Collections.Generic; +using Content.Client.UserInterface.Controls; using Content.Shared.CharacterInfo; using Content.Shared.Objectives; using Robust.Client.GameObjects; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.Utility; -using Robust.Shared.GameObjects; -using Robust.Shared.Maths; namespace Content.Client.CharacterInfo.Components; diff --git a/Content.Client/Chemistry/EntitySystems/ReagentDispenserSystem.cs b/Content.Client/Chemistry/EntitySystems/ReagentDispenserSystem.cs index 25c09b4603..c0ac6c4bc3 100644 --- a/Content.Client/Chemistry/EntitySystems/ReagentDispenserSystem.cs +++ b/Content.Client/Chemistry/EntitySystems/ReagentDispenserSystem.cs @@ -1,5 +1,5 @@ -using JetBrains.Annotations; using Content.Shared.Chemistry.EntitySystems; +using JetBrains.Annotations; namespace Content.Client.Chemistry.EntitySystems { @@ -7,5 +7,6 @@ namespace Content.Client.Chemistry.EntitySystems public sealed class ReagentDispenserSystem : SharedReagentDispenserSystem { // hello there. + // General Kenobi } } diff --git a/Content.Client/CrewManifest/CrewManifestUi.xaml b/Content.Client/CrewManifest/CrewManifestUi.xaml index 6c29664335..c49ecf2069 100644 --- a/Content.Client/CrewManifest/CrewManifestUi.xaml +++ b/Content.Client/CrewManifest/CrewManifestUi.xaml @@ -1,13 +1,13 @@ - + - + diff --git a/Content.Client/Entry/EntryPoint.cs b/Content.Client/Entry/EntryPoint.cs index cf6bb073e2..b2e011e01a 100644 --- a/Content.Client/Entry/EntryPoint.cs +++ b/Content.Client/Entry/EntryPoint.cs @@ -2,7 +2,7 @@ using Content.Client.Administration.Managers; using Content.Client.Changelog; using Content.Client.CharacterInterface; using Content.Client.Chat.Managers; -using Content.Client.EscapeMenu; +using Content.Client.Options; using Content.Client.Eui; using Content.Client.Flash; using Content.Client.GhostKick; diff --git a/Content.Client/Gameplay/GameplayState.cs b/Content.Client/Gameplay/GameplayState.cs index c4fb1cefe4..68e99bed0d 100644 --- a/Content.Client/Gameplay/GameplayState.cs +++ b/Content.Client/Gameplay/GameplayState.cs @@ -5,7 +5,7 @@ using Content.Client.Chat.UI; using Content.Client.Construction.UI; using Content.Client.Hands; using Content.Client.HUD; -using Content.Client.HUD.UI; +using Content.Client.UserInterface.Controls; using Content.Client.Viewport; using Content.Client.Voting; using Content.Shared.Chat; diff --git a/Content.Client/Ghost/GhostComponent.cs b/Content.Client/Ghost/GhostComponent.cs index 4499834b7b..57f7b7753a 100644 --- a/Content.Client/Ghost/GhostComponent.cs +++ b/Content.Client/Ghost/GhostComponent.cs @@ -1,8 +1,6 @@ -using Content.Client.Ghost.UI; +using Content.Client.UserInterface.Systems.Ghost; using Content.Shared.Ghost; using Robust.Client.Player; -using Robust.Shared.GameObjects; -using Robust.Shared.IoC; namespace Content.Client.Ghost { diff --git a/Content.Client/Ghost/GhostSystem.cs b/Content.Client/Ghost/GhostSystem.cs index ecac981f59..f44ba7b31a 100644 --- a/Content.Client/Ghost/GhostSystem.cs +++ b/Content.Client/Ghost/GhostSystem.cs @@ -1,11 +1,9 @@ -using Content.Client.Ghost.UI; using Content.Client.HUD; +using Content.Client.UserInterface.Systems.Ghost; using Content.Shared.Ghost; using JetBrains.Annotations; using Robust.Client.GameObjects; using Robust.Client.Player; -using Robust.Shared.GameObjects; -using Robust.Shared.IoC; namespace Content.Client.Ghost { diff --git a/Content.Client/Info/RulesAndInfoWindow.cs b/Content.Client/Info/RulesAndInfoWindow.cs index acb797828c..60351247a3 100644 --- a/Content.Client/Info/RulesAndInfoWindow.cs +++ b/Content.Client/Info/RulesAndInfoWindow.cs @@ -1,5 +1,4 @@ -using Content.Client.EscapeMenu.UI; -using Content.Shared.CCVar; +using Content.Client.Options.UI; using Robust.Client.ResourceManagement; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; diff --git a/Content.Client/Info/RulesManager.cs b/Content.Client/Info/RulesManager.cs index aa976b3b89..366b98d465 100644 --- a/Content.Client/Info/RulesManager.cs +++ b/Content.Client/Info/RulesManager.cs @@ -1,6 +1,5 @@ -using Content.Client.Gameplay; using Content.Client.Lobby; -using Content.Client.Viewport; +using Content.Client.Gameplay; using Content.Shared.CCVar; using Content.Shared.Info; using Robust.Client.Console; diff --git a/Content.Client/IoC/ClientContentIoC.cs b/Content.Client/IoC/ClientContentIoC.cs index c66a5603e1..e8ee8389a0 100644 --- a/Content.Client/IoC/ClientContentIoC.cs +++ b/Content.Client/IoC/ClientContentIoC.cs @@ -2,7 +2,7 @@ using Content.Client.Changelog; using Content.Client.Chat.Managers; using Content.Client.Clickable; -using Content.Client.EscapeMenu; +using Content.Client.Options; using Content.Client.Eui; using Content.Client.GhostKick; using Content.Client.HUD; diff --git a/Content.Client/LateJoin/LateJoinGui.cs b/Content.Client/LateJoin/LateJoinGui.cs index f38a983355..ad6b8ac582 100644 --- a/Content.Client/LateJoin/LateJoinGui.cs +++ b/Content.Client/LateJoin/LateJoinGui.cs @@ -1,11 +1,8 @@ -using System.Linq; using Content.Client.CrewManifest; -using Content.Client.Eui; using Content.Client.GameTicking.Managers; -using Content.Client.HUD.UI; using Content.Client.Players.PlayTimeTracking; +using Content.Client.UserInterface.Controls; using Content.Shared.CCVar; -using Content.Shared.CrewManifest; using Content.Shared.Roles; using Robust.Client.Console; using Robust.Client.UserInterface; diff --git a/Content.Client/Lobby/LobbyState.cs b/Content.Client/Lobby/LobbyState.cs index 88f940ff28..47c0a69993 100644 --- a/Content.Client/Lobby/LobbyState.cs +++ b/Content.Client/Lobby/LobbyState.cs @@ -2,7 +2,7 @@ using System; using System.Linq; using Content.Client.Chat; using Content.Client.Chat.Managers; -using Content.Client.EscapeMenu.UI; +using Content.Client.Options.UI; using Content.Client.GameTicking.Managers; using Content.Client.LateJoin; using Content.Client.Lobby.UI; diff --git a/Content.Client/Lobby/UI/LobbyCharacterPreviewPanel.cs b/Content.Client/Lobby/UI/LobbyCharacterPreviewPanel.cs index 7370a43546..22c2148c39 100644 --- a/Content.Client/Lobby/UI/LobbyCharacterPreviewPanel.cs +++ b/Content.Client/Lobby/UI/LobbyCharacterPreviewPanel.cs @@ -1,22 +1,16 @@ using System.Linq; -using Content.Client.HUD.UI; using Content.Client.Inventory; using Content.Client.Preferences; using Content.Client.UserInterface.Controls; using Content.Shared.CharacterAppearance.Systems; using Content.Shared.GameTicking; -using Content.Shared.Inventory; using Content.Shared.Preferences; using Content.Shared.Roles; using Content.Shared.Species; using Robust.Client.GameObjects; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; -using Robust.Shared.GameObjects; -using Robust.Shared.IoC; -using Robust.Shared.Localization; using Robust.Shared.Map; -using Robust.Shared.Maths; using Robust.Shared.Prototypes; using static Robust.Client.UserInterface.Controls.BoxContainer; diff --git a/Content.Client/Lobby/UI/LobbyGui.xaml b/Content.Client/Lobby/UI/LobbyGui.xaml index 12a24bb472..1c885dc281 100644 --- a/Content.Client/Lobby/UI/LobbyGui.xaml +++ b/Content.Client/Lobby/UI/LobbyGui.xaml @@ -1,12 +1,10 @@ - @@ -20,7 +18,7 @@ - + - + @@ -52,8 +50,8 @@ - - + + @@ -61,18 +59,18 @@