More data in power debug tool.

This commit is contained in:
Pieter-Jan Briers
2018-05-30 14:23:08 +02:00
parent d5ce4c6b7f
commit 097c876578
3 changed files with 15 additions and 3 deletions

View File

@@ -17,7 +17,10 @@ namespace Content.Client.GameObjects.Components.Power
switch (message)
{
case OpenDataWindowMsg msg:
var window = new SS14Window();
var window = new SS14Window
{
Title = "Power Debug Tool"
};
window.Contents.AddChild(new Label() { Text = msg.Data });
window.AddToScreen();
window.Open();