* First Prototype * Command Window * Dropdown * Is this better? * That's kinda better? * Added divider * Shit * Check if Admin Menu & Commands are allowed * -Funcy Shit -Now gets properly the playerlist -Fixed kick reason * Dropdown Improvement with some more func * -Added DirectCommand for commands that don't need a ui -Added RestartRound * Better way to make DirectCommandButtons * -Some new Tabs -Player list * -Split Buttons -Regions -Fixed Test Command * Some server buttons * Playerlist alignment * Fucky SpawnEntites & SpawnTiles in AdminBus * -Debug Buttons -Few more commands * -Make dem controls thicc -SpinBox * Escape Kick Reason * Only create the window when you press the button * Adds StationEvents * Nullable "fixes" * This thing wasn't made for buttons * Call other constructor for empty CommandButton * Request method in the interface * -Pushed most Controls to be fields -No more dict passing -Removed test cmd -Regions to better navigate * -Bound to key -Removed from escape menu -Remember cmd windows -Close all cmd windows on toggle * -Moved dependency * Merge fixes Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com>
41 lines
1.7 KiB
C#
41 lines
1.7 KiB
C#
using Content.Client.Chat;
|
|
using Content.Client.GameTicking;
|
|
using Content.Client.Interfaces;
|
|
using Content.Client.Interfaces.Chat;
|
|
using Content.Client.Interfaces.Parallax;
|
|
using Content.Client.Parallax;
|
|
using Content.Client.Sandbox;
|
|
using Content.Client.StationEvents;
|
|
using Content.Client.UserInterface;
|
|
using Content.Client.UserInterface.AdminMenu;
|
|
using Content.Client.UserInterface.Stylesheets;
|
|
using Content.Client.Utility;
|
|
using Content.Shared.Interfaces;
|
|
using Robust.Shared.IoC;
|
|
|
|
namespace Content.Client
|
|
{
|
|
internal static class ClientContentIoC
|
|
{
|
|
public static void Register()
|
|
{
|
|
IoCManager.Register<IGameHud, GameHud>();
|
|
IoCManager.Register<IClientNotifyManager, ClientNotifyManager>();
|
|
IoCManager.Register<ISharedNotifyManager, ClientNotifyManager>();
|
|
IoCManager.Register<IClientGameTicker, ClientGameTicker>();
|
|
IoCManager.Register<IParallaxManager, ParallaxManager>();
|
|
IoCManager.Register<IChatManager, ChatManager>();
|
|
IoCManager.Register<IEscapeMenuOwner, EscapeMenuOwner>();
|
|
IoCManager.Register<ISandboxManager, SandboxManager>();
|
|
IoCManager.Register<IModuleManager, ClientModuleManager>();
|
|
IoCManager.Register<IClientPreferencesManager, ClientPreferencesManager>();
|
|
IoCManager.Register<IItemSlotManager, ItemSlotManager>();
|
|
IoCManager.Register<IStylesheetManager, StylesheetManager>();
|
|
IoCManager.Register<IScreenshotHook, ScreenshotHook>();
|
|
IoCManager.Register<IClickMapManager, ClickMapManager>();
|
|
IoCManager.Register<IStationEventManager, StationEventManager>();
|
|
IoCManager.Register<IAdminMenuManager, AdminMenuManager>();
|
|
}
|
|
}
|
|
}
|