- Powerful - Data-oriented - Approved by PJB - Powered by node graphs and AI pathfinding - Coded by the same nerd who brought you atmos Co-authored-by: Exp <theexp111@gmail.com>
11 lines
251 B
C#
11 lines
251 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Shared.GameObjects.Components
|
|
{
|
|
[RegisterComponent]
|
|
public class SharedCanBuildWindowOnTopComponent : Component
|
|
{
|
|
public override string Name => "CanBuildWindowOnTop";
|
|
}
|
|
}
|