Files
tbd-station-14/Content.Shared/Puppet/PuppetDummyComponent.cs

12 lines
258 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Puppet
{
[RegisterComponent, NetworkedComponent]
public sealed partial class PuppetDummyComponent : Component
{
[DataField("enabled")]
public bool Enabled = false;
}
}