2018-05-27 16:44:50 +02:00
|
|
|
using System;
|
2019-04-15 21:11:38 -06:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.Serialization;
|
2018-05-27 16:44:50 +02:00
|
|
|
|
|
|
|
|
namespace Content.Shared.GameObjects.Components.Power
|
|
|
|
|
{
|
|
|
|
|
public class SharedPowerDebugTool : Component
|
|
|
|
|
{
|
|
|
|
|
public override string Name => "PowerDebugTool";
|
|
|
|
|
public override uint? NetID => ContentNetIDs.POWER_DEBUG_TOOL;
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
protected class OpenDataWindowMsg : ComponentMessage
|
|
|
|
|
{
|
|
|
|
|
public string Data { get; }
|
|
|
|
|
|
|
|
|
|
public OpenDataWindowMsg(string data)
|
|
|
|
|
{
|
|
|
|
|
Directed = true;
|
|
|
|
|
Data = data;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|