Files
tbd-station-14/Content.Server/GameObjects/Components/Items/FirelockElectronicsComponent.cs
2020-11-27 12:18:01 +01:00

12 lines
237 B
C#

using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components.Items
{
[RegisterComponent]
class FirelockElectronics : Component
{
public override string Name => "FirelockElectronics";
}
}