Fix compiler warnings and remove dead code.
This commit is contained in:
@@ -26,7 +26,7 @@ namespace Content.Client.GameObjects.Components.Power
|
||||
{
|
||||
base.Open();
|
||||
|
||||
_window = new ApcWindow(IoCManager.Resolve<IDisplayManager>())
|
||||
_window = new ApcWindow()
|
||||
{
|
||||
MarginRight = 426.0f, MarginBottom = 270.0f
|
||||
};
|
||||
@@ -124,7 +124,7 @@ namespace Content.Client.GameObjects.Components.Power
|
||||
public Label ExternalPowerStateLabel { get; set; }
|
||||
public ProgressBar ChargeBar { get; set; }
|
||||
|
||||
public ApcWindow(IDisplayManager displayMan) : base(displayMan)
|
||||
public ApcWindow()
|
||||
{
|
||||
Title = "APC";
|
||||
var rows = new VBoxContainer("Rows");
|
||||
|
||||
@@ -23,7 +23,7 @@ namespace Content.Client.GameObjects.Components.Power
|
||||
{
|
||||
LastWindow.Dispose();
|
||||
}
|
||||
LastWindow = new SS14Window(IoCManager.Resolve<IDisplayManager>())
|
||||
LastWindow = new SS14Window()
|
||||
{
|
||||
Title = "Power Debug Tool",
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user