Files
OldThink/Content.Shared/Construction/SharedCanBuildWindowOnTopComponent.cs

12 lines
258 B
C#
Raw Normal View History

#nullable enable
using Robust.Shared.GameObjects;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Construction
{
[RegisterComponent]
public class SharedCanBuildWindowOnTopComponent : Component
{
public override string Name => "CanBuildWindowOnTop";
}
}