* Basic voting * Rewrite lobby in XAML. Working lobby voting. * Escape menu is now XAML. * Vote menu works, custom votes, gamemode votes. * Vote timeouts & administration. Basically done now. * I will now pretend I was never planning to code voting hotkeys. * Make vote call UI a bit... funny. * Fix exception on round restart. * Fix some vote command definitions.
51 lines
2.2 KiB
C#
51 lines
2.2 KiB
C#
using Content.Client.Administration;
|
|
using Content.Client.Chat;
|
|
using Content.Client.Eui;
|
|
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.Client.Voting;
|
|
using Content.Shared.Actions;
|
|
using Content.Shared.Interfaces;
|
|
using Content.Shared.Alert;
|
|
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>();
|
|
IoCManager.Register<AlertManager, AlertManager>();
|
|
IoCManager.Register<ActionManager, ActionManager>();
|
|
IoCManager.Register<IClientAdminManager, ClientAdminManager>();
|
|
IoCManager.Register<EuiManager, EuiManager>();
|
|
IoCManager.Register<IVoteManager, VoteManager>();
|
|
}
|
|
}
|
|
}
|